Bug 19532: (follow-up) aria-hidden attr on OPAC, and more
[koha.git] / opac / opac-recalls.pl
1 #!/usr/bin/perl
2
3 # Copyright 2020 Aleisha Amohia <aleisha@catalyst.net.nz>
4 #
5 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10
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 Encode qw( encode );
22 use C4::Auth qw( get_template_and_user );
23 use C4::Output qw( output_html_with_http_headers );
24 use Koha::Recalls;
25
26 my $input = new CGI;
27 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
28    {
29       template_name   => "opac-recalls.tt",
30       query           => $input,
31       type            => "opac",
32    }
33 );
34
35 my $recalls = Koha::Recalls->search({ borrowernumber => $borrowernumber }, { order_by => { -desc => 'recalldate' } });
36 $template->param(
37      RECALLS => $recalls,
38      recallsview => 1
39 );
40
41 output_html_with_http_headers $input, $cookie, $template->output, undef, { force_no_caching => 1 };