Koha::Template::Plugin::KohaPlugins - A module for adding hooks into Koha for plugins
This plugin contains functions related to adding plugin hooks into various parts of Koha.
To use, include the line '[% USE KohaPlugins %]' at the top of the template to enable the plugin
[% KohaPlugins.get_plugins_opac_head %]
This method collects the output of all plugins with an opac_head method to output to the head section of opac pages.
[% KohaPlugins.get_plugins_opac_js %]
This method collects the output of all plugins with an opac_js method to output to the javascript section of at the bottom of opac pages.
[% KohaPlugins.get_plugins_intranet_head %]
This method collects the output of all plugins with an intranet_head method to output to the head section of intranet pages.
[% KohaPlugins.get_plugins_intranet_js %]
This method collects the output of all plugins with an intranet_js method to output to the javascript section of at the bottom of intranet pages.