3 # This file is part of Koha.
5 # Script to manage the opac news.
7 # Casta�eda, Carlos Sebastian - seba3c@yahoo.com.ar - Physics Library UNLP Argentina
8 # Modified to include news to KOHA intranet - tgarip@neu.edu.tr NEU library -Cyprus
9 # Copyright 2000-2002 Katipo Communications
10 # Copyright (C) 2013 Mark Tompsett
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 # use warnings; FIXME - Bug 2505
33 use C4
::Languages
qw(getTranslatedLanguages);
34 use Date
::Calc qw
/Date_to_Days Today/;
39 my $id = $cgi->param('id');
40 my $title = $cgi->param('title');
41 my $content = $cgi->param('content');
43 if ( $cgi->param('expirationdate') ) {
44 $expirationdate = output_pref
({ dt
=> dt_from_string
( scalar $cgi->param('expirationdate') ), dateformat
=> 'iso', dateonly
=> 1 });
46 my $timestamp = output_pref
({ dt
=> dt_from_string
( scalar $cgi->param('timestamp') ), dateformat
=> 'iso', dateonly
=> 1 });
47 my $number = $cgi->param('number');
48 my $lang = $cgi->param('lang');
49 my $branchcode = $cgi->param('branch');
50 my $error_message = $cgi->param('error_message');
52 # Foreign Key constraints work with NULL, not ''
53 # NULL = All branches.
54 $branchcode = undef if (defined($branchcode) && $branchcode eq '');
56 my $new_detail = get_opac_new
($id);
58 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
60 template_name
=> "tools/koha-news.tt",
64 flagsrequired
=> { tools
=> 'edit_news' },
69 # Pass error message if there is one.
70 $template->param( error_message
=> $error_message ) if $error_message;
74 my $tlangs = getTranslatedLanguages
() ;
76 foreach my $language ( @
$tlangs ) {
77 foreach my $sublanguage ( @
{$language->{'sublanguages_loop'}} ) {
80 language
=> $sublanguage->{'rfc4646_subtag'},
81 selected
=> ( $new_detail->{lang
} eq $sublanguage->{'rfc4646_subtag'} ?
1 : 0 ),
86 $template->param( lang_list
=> \
@lang_list,
87 branchcode
=> $branchcode );
89 my $op = $cgi->param('op') // '';
91 if ( $op eq 'add_form' ) {
92 $template->param( add_form
=> 1 );
94 if($new_detail->{lang
} eq "slip"){ $template->param( slip
=> 1); }
97 id
=> $new_detail->{'idnew'}
99 $template->{VARS
}->{'new_detail'} = $new_detail;
102 $template->param( op
=> 'add' );
105 elsif ( $op eq 'add' ) {
112 expirationdate
=> $expirationdate,
113 timestamp
=> $timestamp,
115 branchcode
=> $branchcode,
116 borrowernumber
=> $borrowernumber,
119 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
122 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl?error_message=title_missing");
125 elsif ( $op eq 'edit' ) {
132 expirationdate
=> $expirationdate,
133 timestamp
=> $timestamp,
135 branchcode
=> $branchcode,
138 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
140 elsif ( $op eq 'del' ) {
141 my @ids = $cgi->multi_param('ids');
142 del_opac_new
( join ",", @ids );
143 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
148 my ( $opac_news_count, $opac_news ) = &get_opac_news
( undef, $lang, $branchcode );
150 foreach my $new ( @
$opac_news ) {
151 next unless $new->{'expirationdate'};
152 my @date = split (/-/,$new->{'expirationdate'});
153 if ($date[0]*$date[1]*$date[2]>0 && Date_to_Days
( @date ) < Date_to_Days
(&Today
) ){
154 $new->{'expired'} = 1;
159 opac_news
=> $opac_news,
160 opac_news_count
=> $opac_news_count,
163 $template->param( lang
=> $lang );
164 output_html_with_http_headers
$cgi, $cookie, $template->output;