@@ -, +, @@ --- Koha/Template/Plugin/Biblio.pm | 35 ++++++++++++++++++++++ .../prog/en/includes/biblio-view-menu.inc | 3 +- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 Koha/Template/Plugin/Biblio.pm --- a/Koha/Template/Plugin/Biblio.pm +++ a/Koha/Template/Plugin/Biblio.pm @@ -0,0 +1,35 @@ +package Koha::Template::Plugin::Biblio; + +# Copyright ByWater Solutions 2015 + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; + +use Template::Plugin; +use base qw( Template::Plugin ); + +use Koha::Holds; + +sub HoldsCount { + my ( $self, $biblionumber ) = @_; + + my $holds = Koha::Holds->search( { biblionumber => $biblionumber } ); + + return $holds->count(); +} + +1; --- a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc @@ -1,3 +1,4 @@ +[% USE Biblio %] [% SET biblio_object_id = object || biblionumber %]