functions that were in C4::Interface::CGI::Output are now in C4::Output.
[koha.git] / opac / opac-serial-issues.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
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
10 # version.
11 #
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.
15 #
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
19
20 # $Id$
21
22 use strict;
23 use CGI;
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Date;
27 use C4::Serials;
28 use C4::Letters;
29 use C4::Output;
30 use C4::Context;
31
32
33 my $query      = new CGI;
34 my $op         = $query->param('op');
35 my $dbh        = C4::Context->dbh;
36 my $selectview = $query->param('selectview');
37 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
38
39 my $sth;
40
41 # my $id;
42 my ( $template, $loggedinuser, $cookie );
43 my $biblionumber = $query->param('biblionumber');
44 if ( $selectview eq "full" ) {
45     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
46
47     my $title   = $subscriptions->[0]{bibliotitle};
48     my $yearmin = $subscriptions->[0]{year};
49     my $yearmax = $subscriptions->[ scalar(@$subscriptions) - 1 ]{year};
50
51     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
52         {
53             template_name   => "opac-full-serial-issues.tmpl",
54             query           => $query,
55             type            => "opac",
56             authnotrequired => 1,
57             debug           => 1,
58         }
59     );
60
61     # replace CR by <br> in librarian note
62     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
63
64     $template->param(
65         biblionumber   => $query->param('biblionumber'),
66         years          => $subscriptions,
67         yearmin        => $yearmin,
68         yearmax        => $yearmax,
69         bibliotitle    => $title,
70         suggestion     => C4::Context->preference("suggestion"),
71         virtualshelves => C4::Context->preference("virtualshelves"),
72     );
73
74 }
75 else {
76     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
77
78     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
79         {
80             template_name   => "opac-serial-issues.tmpl",
81             query           => $query,
82             type            => "opac",
83             authnotrequired => 1,
84             debug           => 1,
85         }
86     );
87
88     # replace CR by <br> in librarian note
89     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
90
91     $template->param(
92         biblionumber      => $query->param('biblionumber'),
93         subscription_LOOP => $subscriptions,
94     );
95 }
96 output_html_with_http_headers $query, $cookie, $template->output;