From 52f07570ffe3840c1c892c8e951b344e501f4139 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. Signed-off-by: David Cook --- .../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 b34eb63d5c..aada2bb82d 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 @@