<<

NAME

Koha::Template::Plugin::KohaPlugins - A module for adding hooks into Koha for plugins

DESCRIPTION

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

Methods

get_plugins_opac_head

[% 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.

get_plugins_opac_js

[% 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.

get_plugins_intranet_head

[% 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.

get_plugins_intranet_js

[% 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.

<<