added 440* and 490* 'series' indexes
[koha.git] / tools / koha-news.pl
blobff763e08bf292ccb8d48f07be7a4b8741f6d613c
1 #!/usr/bin/perl
3 # Script to manage the opac news.
4 # written 11/04
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
14 # version.
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 with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA 02111-1307 USA
24 use strict;
25 use CGI;
26 use C4::Auth;
27 use C4::Koha;
28 use C4::Context;
29 use C4::Dates qw(format_date_in_iso);
30 use C4::Output;
31 use C4::NewsChannels;
32 use C4::Languages qw(getTranslatedLanguages);
33 use Date::Calc qw/Date_to_Days Today/;
35 my $cgi = new CGI;
37 my $id = $cgi->param('id');
38 my $title = $cgi->param('title');
39 my $new = $cgi->param('new');
40 my $expirationdate = format_date_in_iso($cgi->param('expirationdate'));
41 my $number = $cgi->param('number');
42 my $lang = $cgi->param('lang');
44 my $new_detail = get_opac_new($id);
46 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
48 template_name => "tools/koha-news.tmpl",
49 query => $cgi,
50 type => "intranet",
51 authnotrequired => 0,
52 flagsrequired => { tools => 1 },
53 debug => 1,
57 # get lang list
58 my @lang_list;
59 my $tlangs = getTranslatedLanguages() ;
60 foreach my $language ( @$tlangs ) {
61 push @lang_list,
63 language => $language->{'language_code'},
64 selected => ( $new_detail->{lang} eq $language->{'language_code'} ? 1 : 0 ),
68 $template->param( lang_list => \@lang_list );
70 my $op = $cgi->param('op');
72 if ( $op eq 'add_form' ) {
73 $template->param( add_form => 1 );
74 if ($id) {
75 $template->param(
76 op => 'edit',
77 id => $new_detail->{'idnew'}
79 $template->param($new_detail);
81 else {
82 $template->param( op => 'add' );
85 elsif ( $op eq 'add' ) {
86 add_opac_new( $title, $new, $lang, $expirationdate, $number );
87 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
89 elsif ( $op eq 'edit' ) {
90 upd_opac_new( $id, $title, $new, $lang, $expirationdate, $number );
91 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
93 elsif ( $op eq 'del' ) {
94 my @ids = $cgi->param('ids');
95 del_opac_new( join ",", @ids );
96 print $cgi->redirect("/cgi-bin/koha/tools/koha-news.pl");
99 else {
101 my ( $opac_news_count, $opac_news ) = &get_opac_news( undef, $lang );
103 foreach my $new ( @$opac_news ) {
104 next unless $new->{'expirationdate'};
105 #$new->{'expirationdate'}=format_date_in_iso($new->{'expirationdate'});
106 my @date = split (/-/,$new->{'expirationdate'});
107 if ($date[0]*$date[1]*$date[2]>0 && Date_to_Days( @date ) < Date_to_Days(&Today) ){
108 $new->{'expired'} = 1;
112 $template->param(
113 $lang => 1,
114 opac_news => $opac_news,
115 opac_news_count => $opac_news_count,
118 $template->param(
119 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
121 output_html_with_http_headers $cgi, $cookie, $template->output;