3 # This file is part of Koha.
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
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.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 use C4
::Auth
; # get_template_and_user
24 use C4
::NewsChannels
; # get_opac_news
25 use C4
::Languages
qw(getTranslatedLanguages accept_language);
26 use C4
::Koha
qw( GetDailyQuote );
29 my $dbh = C4
::Context
->dbh;
31 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
33 template_name
=> "opac-main.tmpl",
36 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
37 flagsrequired
=> { borrow
=> 1 },
41 my $casAuthentication = C4
::Context
->preference('casAuthentication');
43 casAuthentication
=> $casAuthentication,
48 # use cookie setting for language, bug default to syspref if it's not set
49 my ($theme, $news_lang, $availablethemes) = C4
::Templates
::themelanguage
(C4
::Context
->config('opachtdocs'),'opac-main.tt','opac',$input);
51 my $all_koha_news = &GetNewsToDisplay
($news_lang);
52 my $koha_news_count = scalar @
$all_koha_news;
54 my $quote = GetDailyQuote
(); # other options are to pass in an exact quote id or select a random quote each pass... see perldoc C4::Koha
57 koha_news
=> $all_koha_news,
58 koha_news_count
=> $koha_news_count,
59 display_daily_quote
=> C4
::Context
->preference('QuoteOfTheDay'),
60 daily_quote
=> $quote,
63 # If GoogleIndicTransliteration system preference is On Set paramter to load Google's javascript in OPAC search screens
64 if (C4
::Context
->preference('GoogleIndicTransliteration')) {
65 $template->param('GoogleIndicTransliteration' => 1);
68 if (C4
::Context
->preference('OPACNumbersPreferPhrase')) {
69 $template->param('numbersphr' => 1);
72 output_html_with_http_headers
$input, $cookie, $template->output;