From 107d644be6e16a1daa156625bdd63ec36aff7757 Mon Sep 17 00:00:00 2001 From: Lisette Scheer Date: Mon, 20 Oct 2025 17:18:36 +0000 Subject: [PATCH] Bug 40827: Add context to plugin wrapper for report plugins This patch updates the plugin wrapper to include the reports menu and have the breadcrumbs list reports instead of admin or tools when method="report" To Test: 1. Install the Kitchen Sink Plugin 2. Navigate to Reports->Report plugins->Run Report. 3. Observe the admin menu shows 4. Apply the patch 5. Repeat step 2 6. Observe the report menu shows and the breadcrumbs are for the report module. 7. Check that the tools and configuration show the appropriate tool/admin context. --- .../prog/en/includes/wrapper-staff-tool-plugin.inc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/wrapper-staff-tool-plugin.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/wrapper-staff-tool-plugin.inc index b34eb63d5c8..aada2bb82d5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/wrapper-staff-tool-plugin.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/wrapper-staff-tool-plugin.inc @@ -15,6 +15,8 @@ › [% IF ( method == 'tool' ) %] [% t("Tools") | html %] + [% ELSIF (method == 'report' ) %] + [% t("Reports") | html %] [% ELSE %] [% t("Administration") | html %] [% END %] @@ -34,6 +36,8 @@ [% WRAPPER breadcrumb_item %] [% IF ( method == 'tool' ) %] Tools + [% ELSIF (method == 'report' ) %] + Reports [% ELSE %] Administration [% END %] @@ -58,6 +62,8 @@