Bug 10694: (follow-up) fix various issues
[koha.git] / Koha / Template / Plugin / Borrowers.pm
1 package Koha::Template::Plugin::Borrowers;
2
3 # Copyright ByWater Solutions 2013
4
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21
22 use base qw( Template::Plugin );
23
24 use Date::Calc qw/Today Add_Delta_YM check_date Date_to_Days/;
25
26 use C4::Koha;
27
28 =pod
29
30 This plugin is a home for various patron related Template Toolkit functions
31 to help streamline Koha and to move logic from the Perl code into the
32 Templates when it makes sense to do so.
33
34 To use, first, include the line '[% USE Borrowers %]' at the top
35 of the template to enable the plugin.
36
37 For example: [% IF Borrowers.IsDebarred( borrower.borrowernumber ) %]
38 removes the necessity of setting a template variable in Perl code to
39 find out if a patron is restricted even if that variable is not evaluated
40 in any way in the script.
41
42 =cut
43
44 sub IsDebarred {
45     my ( $self, $borrower ) = @_;
46
47     return unless $borrower;
48
49     if ( $borrower->{'debarred'} && check_date( split( /-/, $borrower->{'debarred'} ) ) ) {
50         if ( Date_to_Days(Date::Calc::Today) < Date_to_Days( split( /-/, $borrower->{'debarred'} ) ) ) {
51             return 1;
52         }
53     }
54
55     return 0;
56 }
57
58 1;