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>.
32 use C4
::Languages
qw(getTranslatedLanguages);
33 use Date
::Calc qw
/Date_to_Days Today/;
38 my $id = $cgi->param('id');
39 my $title = $cgi->param('title');
40 my $content = $cgi->param('content');
42 if ( $cgi->param('expirationdate') ) {
43 $expirationdate = output_pref
({ dt
=> dt_from_string
( scalar $cgi->param('expirationdate') ), dateformat
=> 'iso', dateonly
=> 1 });
45 my $timestamp = output_pref
({ dt
=> dt_from_string
( scalar $cgi->param('timestamp') ), dateformat
=> 'iso', dateonly
=> 1 });
46 my $number = $cgi->param('number');
47 my $lang = $cgi->param('lang');
48 my $branchcode = $cgi->param('branch');
49 my $error_message = $cgi->param('error_message');
51 # Foreign Key constraints work with NULL, not ''
52 # NULL = All branches.
53 $branchcode = undef if (defined($branchcode) && $branchcode eq '');
55 my $new_detail = get_opac_new
($id);
57 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
59 template_name
=> "tools/koha-news.tt",
63 flagsrequired
=> { tools
=> 'edit_news' },
68 # Pass error message if there is one.
69 $template->param( error_message
=> $error_message ) if $error_message;
73 my $tlangs = getTranslatedLanguages
() ;
75 foreach my $language ( @
$tlangs ) {
76 foreach my $sublanguage ( @
{$language->{'sublanguages_loop'}} ) {
79 language
=> $sublanguage->{'rfc4646_subtag'},
80 selected
=> ( $new_detail->{lang
} eq $sublanguage->{'rfc4646_subtag'} ?
1 : 0 ),
85 $template->param( lang_list
=> \
@lang_list,
86 branchcode
=> $branchcode );
88 my $op = $cgi->param('op') // '';
90 if ( $op eq 'add_form' ) {
91 $template->param( add_form
=> 1 );
93 if($new_detail->{lang
} eq "slip"){ $template->param( slip
=> 1); }
96 id
=> $new_detail->{'idnew'}
98 $template->{VARS
}->{'new_detail'} = $new_detail;
101 $template->param( op
=> 'add' );
104 elsif ( $op eq 'add' ) {
111 expirationdate
=> $expirationdate,
112 timestamp
=> $timestamp,
114 branchcode
=> $branchcode,
115 borrowernumber
=> $borrowernumber,
118 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
121 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl?error_message=title_missing");
124 elsif ( $op eq 'edit' ) {
131 expirationdate
=> $expirationdate,
132 timestamp
=> $timestamp,
134 branchcode
=> $branchcode,
137 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
139 elsif ( $op eq 'del' ) {
140 my @ids = $cgi->multi_param('ids');
141 del_opac_new
( join ",", @ids );
142 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
147 my ( $opac_news_count, $opac_news ) = &get_opac_news
( undef, undef, undef );
149 foreach my $new ( @
$opac_news ) {
150 next unless $new->{'expirationdate'};
151 my @date = split (/-/,$new->{'expirationdate'});
152 if ($date[0]*$date[1]*$date[2]>0 && Date_to_Days
( @date ) < Date_to_Days
(&Today
) ){
153 $new->{'expired'} = 1;
158 opac_news
=> $opac_news,
159 opac_news_count
=> $opac_news_count,
162 $template->param( lang
=> $lang );
163 output_html_with_http_headers
$cgi, $cookie, $template->output;