3 # Script to manage the opac news.
5 # Casta�eda, Carlos Sebastian - seba3c@yahoo.com.ar - Physics Library UNLP Argentina
6 # Modified to include news to KOHA intranet - tgarip@neu.edu.tr NEU library -Cyprus
7 # Copyright 2000-2002 Katipo Communications
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License along
21 # with Koha; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #use warnings; FIXME - Bug 2505
30 use C4
::Dates
qw(format_date_in_iso);
33 use C4
::Languages
qw(getTranslatedLanguages);
34 use Date
::Calc qw
/Date_to_Days Today/;
38 my $id = $cgi->param('id');
39 my $title = $cgi->param('title');
40 my $new = $cgi->param('new');
41 my $expirationdate = format_date_in_iso
($cgi->param('expirationdate'));
42 my $timestamp = format_date_in_iso
($cgi->param('timestamp'));
43 my $number = $cgi->param('number');
44 my $lang = $cgi->param('lang');
46 my $new_detail = get_opac_new
($id);
48 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
50 template_name
=> "tools/koha-news.tmpl",
54 flagsrequired
=> { tools
=> 'edit_news' },
61 my $tlangs = getTranslatedLanguages
() ;
62 foreach my $language ( @
$tlangs ) {
65 language
=> $language->{'rfc4646_subtag'},
66 selected
=> ( $new_detail->{lang
} eq $language->{'rfc4646_subtag'} ?
1 : 0 ),
70 $template->param( lang_list
=> \
@lang_list );
72 my $op = $cgi->param('op');
74 if ( $op eq 'add_form' ) {
75 $template->param( add_form
=> 1 );
77 if($new_detail->{lang
} eq "slip"){ $template->param( slip
=> 1); }
80 id
=> $new_detail->{'idnew'}
82 $template->{VARS
}->{'new_detail'} = $new_detail;
85 $template->param( op
=> 'add' );
88 elsif ( $op eq 'add' ) {
89 add_opac_new
( $title, $new, $lang, $expirationdate, $timestamp, $number );
90 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
92 elsif ( $op eq 'edit' ) {
93 upd_opac_new
( $id, $title, $new, $lang, $expirationdate, $timestamp ,$number );
94 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
96 elsif ( $op eq 'del' ) {
97 my @ids = $cgi->param('ids');
98 del_opac_new
( join ",", @ids );
99 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
104 my ( $opac_news_count, $opac_news ) = &get_opac_news
( undef, $lang );
106 foreach my $new ( @
$opac_news ) {
107 next unless $new->{'expirationdate'};
108 #$new->{'expirationdate'}=format_date_in_iso($new->{'expirationdate'});
109 my @date = split (/-/,$new->{'expirationdate'});
110 if ($date[0]*$date[1]*$date[2]>0 && Date_to_Days
( @date ) < Date_to_Days
(&Today
) ){
111 $new->{'expired'} = 1;
117 opac_news
=> $opac_news,
118 opac_news_count
=> $opac_news_count,
122 DHTMLcalendar_dateformat
=> C4
::Dates
->DHTMLcalendar(),
123 dateformat
=> C4
::Context
->preference("dateformat"),
125 output_html_with_http_headers
$cgi, $cookie, $template->output;