Bug 19532: (follow-up) aria-hidden attr on OPAC, and more
[koha.git] / members / recallshistory.pl
1 #!/usr/bin/perl
2
3 # Copyright 2020 Aleisha Amohia <aleisha@catalyst.net.nz>
4 #
5 # This file is part of Koha.
6
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 use Modern::Perl;
20 use CGI qw ( -utf8 );
21 use C4::Auth qw( get_template_and_user );
22 use C4::Output qw( output_html_with_http_headers );
23
24 my $input = CGI->new;
25 my ($template, $loggedinuser, $cookie)= get_template_and_user(
26     {
27        template_name => "members/recallshistory.tt",
28        query => $input,
29        type => "intranet",
30        flagsrequired => { recalls => 1 },
31        debug => 1,
32     }
33 );
34
35 my $borrowernumber = $input->param('borrowernumber');
36 my $recalls = Koha::Recalls->search({ borrowernumber => $borrowernumber }, { order_by => { '-desc' => 'recalldate' } });
37 my $patron = Koha::Patrons->find( $borrowernumber );
38
39 $template->param(
40         patron          => $patron,
41         recalls         => $recalls,
42         recallsview     => 1,
43         specific_patron => 1,
44 );
45
46 output_html_with_http_headers $input, $cookie, $template->output;