3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
33 my $op = $query->param('op');
34 my $dbh = C4
::Context
->dbh;
37 my ( $template, $loggedinuser, $cookie );
38 my $externalid = $query->param('externalid');
39 my $alerttype = $query->param('alerttype');
40 my $biblionumber = $query->param('biblionumber');
42 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
44 template_name
=> "opac-alert-subscribe.tmpl",
52 if ( $op eq 'alert_confirmed' ) {
53 addalert
( $loggedinuser, $alerttype, $externalid );
54 if ( $alerttype eq 'issue' ) {
55 print $query->redirect(
56 "opac-serial-issues.pl?biblionumber=$biblionumber");
60 elsif ( $op eq 'cancel_confirmed' ) {
61 my $alerts = getalert
( $loggedinuser, $alerttype, $externalid );
63 { # we are supposed to have only 1 result, but just in case...
64 delalert
( $_->{alertid
} );
66 if ( $alerttype eq 'issue' ) {
67 print $query->redirect(
68 "opac-serial-issues.pl?biblionumber=$biblionumber");
74 if ( $alerttype eq 'issue' ) { # alert for subscription issues
75 my $subscription = &GetSubscription
($externalid);
78 bibliotitle
=> $subscription->{bibliotitle
},
79 notes
=> $subscription->{notes
},
80 externalid
=> $externalid,
81 biblionumber
=> $biblionumber,
88 output_html_with_http_headers
$query, $cookie, $template->output;