@@ -, +, @@ page --- .../prog/en/modules/intranet-main.tt | 23 +++++++++++++++---- mainpage.pl | 7 ++++++ 2 files changed, 25 insertions(+), 5 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt @@ -2,6 +2,7 @@ [% USE Asset %] [% USE Koha %] [% USE Branches %] +[% KohaPlugins %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha staff interface @@ -46,7 +47,7 @@
-
+
-
-
+
+
+
+
+ -
- +
--- a/mainpage.pl +++ a/mainpage.pl @@ -103,4 +103,11 @@ $template->param( pending_problem_reports => $pending_problem_reports ); +if ( C4::Context->config('enable_plugins') ) { + my @big_link_plugins = Koha::Plugins->new()->GetPlugins({ + method => 'intranet_big_link', + }); + $template->param( big_link_plugins => \@big_link_plugins ); +} + output_html_with_http_headers $query, $cookie, $template->output; --