Bug 12539: PROG/CCSR deprecation: Remove hardcoded theme from C4/Templates.pm
[koha.git] / serials / serials-home.pl
blob175321e6f0e0ec1bd8582589cd196c7fe9153647
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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 2 of the License, or (at your option) any later
10 # version.
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.
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.
21 =head1 NAME
23 serials-home.pl
25 =head1 DESCRIPTION
27 this script is the main page for serials/
29 =cut
31 use Modern::Perl;
32 use CGI;
33 use C4::Auth;
34 use C4::Branch;
35 use C4::Context;
36 use C4::Output;
37 use C4::Serials;
39 my $query = new CGI;
40 my $routing = $query->param('routing') || C4::Context->preference("RoutingSerials");
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44 template_name => "serials/serials-home.tt",
45 query => $query,
46 type => "intranet",
47 authnotrequired => 0,
48 flagsrequired => { serials => '*' },
49 debug => 1,
53 $template->param(
54 routing => $routing,
55 (uc(C4::Context->preference("marcflavour"))) => 1
58 output_html_with_http_headers $query, $cookie, $template->output;