(bug #2811)[3.2] fix opac-renew.pl part
[koha.git] / opac / opac-main.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18
19 use strict;
20 use CGI;
21 use C4::Auth;    # get_template_and_user
22 use C4::Output;
23 use C4::VirtualShelves;
24 use C4::Branch;          # GetBranches
25 use C4::Members;         # GetMember
26 use C4::NewsChannels;    # get_opac_news
27 use C4::Acquisition;     # GetRecentAcqui
28
29 my $input = new CGI;
30 my $dbh   = C4::Context->dbh;
31
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
33     {
34         template_name   => "opac-main.tmpl",
35         type            => "opac",
36         query           => $input,
37         authnotrequired => 1,
38         flagsrequired   => { borrow => 1 },
39     }
40 );
41
42 my $borrower = GetMember( $borrowernumber, 'borrowernumber' );
43 $template->param(
44     textmessaging        => $borrower->{textmessaging},
45 );
46
47 # display news
48 # use cookie setting for language, bug default to syspref if it's not set
49 my $news_lang = $input->cookie('KohaOpacLanguage') || 'en';
50 my $all_koha_news   = &GetNewsToDisplay($news_lang);
51 my $koha_news_count = scalar @$all_koha_news;
52
53 $template->param(
54     koha_news       => $all_koha_news,
55     koha_news_count => $koha_news_count
56 );
57
58 output_html_with_http_headers $input, $cookie, $template->output;