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/;
35 use C4
::Branch qw
/GetBranches/;
40 my $id = $cgi->param('id');
41 my $title = $cgi->param('title');
42 my $new = $cgi->param('new');
44 if ( $cgi->param('expirationdate') ) {
45 $expirationdate = output_pref
({ dt
=> dt_from_string
( scalar $cgi->param('expirationdate') ), dateformat
=> 'iso', dateonly
=> 1 });
47 my $timestamp = output_pref
({ dt
=> dt_from_string
( scalar $cgi->param('timestamp') ), dateformat
=> 'iso', dateonly
=> 1 });
48 my $number = $cgi->param('number');
49 my $lang = $cgi->param('lang');
50 my $branchcode = $cgi->param('branch');
51 my $error_message = $cgi->param('error_message');
53 # Foreign Key constraints work with NULL, not ''
54 # NULL = All branches.
55 $branchcode = undef if (defined($branchcode) && $branchcode eq '');
57 my $new_detail = get_opac_new
($id);
59 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
61 template_name
=> "tools/koha-news.tt",
65 flagsrequired
=> { tools
=> 'edit_news' },
70 # Pass error message if there is one.
71 $template->param( error_message
=> $error_message ) if $error_message;
75 my $tlangs = getTranslatedLanguages
() ;
77 foreach my $language ( @
$tlangs ) {
78 foreach my $sublanguage ( @
{$language->{'sublanguages_loop'}} ) {
81 language
=> $sublanguage->{'rfc4646_subtag'},
82 selected
=> ( $new_detail->{lang
} eq $sublanguage->{'rfc4646_subtag'} ?
1 : 0 ),
87 my $branches = GetBranches
;
89 $template->param( lang_list
=> \
@lang_list,
90 branch_list
=> $branches,
91 branchcode
=> $branchcode );
93 my $op = $cgi->param('op') // '';
95 if ( $op eq 'add_form' ) {
96 $template->param( add_form
=> 1 );
98 if($new_detail->{lang
} eq "slip"){ $template->param( slip
=> 1); }
101 id
=> $new_detail->{'idnew'}
103 $template->{VARS
}->{'new_detail'} = $new_detail;
106 $template->param( op
=> 'add' );
109 elsif ( $op eq 'add' ) {
116 expirationdate
=> $expirationdate,
117 timestamp
=> $timestamp,
119 branchcode
=> $branchcode,
120 borrowernumber
=> $borrowernumber,
123 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
126 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl?error_message=title_missing");
129 elsif ( $op eq 'edit' ) {
136 expirationdate
=> $expirationdate,
137 timestamp
=> $timestamp,
139 branchcode
=> $branchcode,
142 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
144 elsif ( $op eq 'del' ) {
145 my @ids = $cgi->multi_param('ids');
146 del_opac_new
( join ",", @ids );
147 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
152 my ( $opac_news_count, $opac_news ) = &get_opac_news
( undef, $lang, $branchcode );
154 foreach my $new ( @
$opac_news ) {
155 next unless $new->{'expirationdate'};
156 my @date = split (/-/,$new->{'expirationdate'});
157 if ($date[0]*$date[1]*$date[2]>0 && Date_to_Days
( @date ) < Date_to_Days
(&Today
) ){
158 $new->{'expired'} = 1;
163 opac_news
=> $opac_news,
164 opac_news_count
=> $opac_news_count,
167 $template->param( lang
=> $lang );
168 output_html_with_http_headers
$cgi, $cookie, $template->output;