Changed to use templates
[koha.git] / detail.pl
1 #!/usr/bin/perl
2 # NOTE: Use standard 8-space tabs for this file (indents are 4 spaces)
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use HTML::Template;
22 use strict;
23 require Exporter;
24 use C4::Context;
25 use C4::Output;  # contains gettemplate
26 use CGI;
27 use C4::Search;
28 use C4::Auth;
29 use C4::Interface::CGI::Output;
30
31 my $query=new CGI;
32 my $type=$query->param('type');
33 ($type) || ($type='intra');
34
35 my $biblionumber=$query->param('bib');
36 #my $type='intra';      # FIXME - There's already a $type in this scope
37
38
39 # change back when ive fixed request.pl
40 my @items = ItemInfo(undef, $biblionumber, $type);
41 my $norequests = 1;
42 foreach my $itm (@items) {
43      $norequests = 0 unless $itm->{'notforloan'};
44 }
45
46
47
48 my $dat=bibdata($biblionumber);
49 my ($authorcount, $addauthor)= &addauthor($biblionumber);
50 my ($webbiblioitemcount, @webbiblioitems) = &getwebbiblioitems($biblionumber);
51 my ($websitecount, @websites)             = &getwebsites($biblionumber);
52
53 $dat->{'count'}=@items;
54 $dat->{'norequests'} = $norequests;
55
56 $dat->{'additional'}=$addauthor->[0]->{'author'};
57 for (my $i = 1; $i < $authorcount; $i++) {
58         $dat->{'additional'} .= "|" . $addauthor->[$i]->{'author'};
59 } # for
60
61 my @results;
62
63 $results[0]=$dat;
64
65 my $resultsarray=\@results;
66 my $itemsarray=\@items;
67 my $webarray=\@webbiblioitems;
68 my $sitearray=\@websites;
69
70 my $startfrom=$query->param('startfrom');
71 ($startfrom) || ($startfrom=0);
72
73 my ($template, $loggedinuser, $cookie) = get_template_and_user({
74         template_name   => ($type eq 'opac'? 'catalogue/detail-opac.tmpl':
75                                              'catalogue/detail.tmpl'),
76         query           => $query,
77         type            => "intranet",
78         authnotrequired => ($type eq 'opac'),
79         flagsrequired   => {catalogue => 1},
80     });
81
82 my $count=1;
83
84 # now to get the items into a hash we can use and whack that thru
85
86
87 my $nextstartfrom=($startfrom+20<$count-20) ? ($startfrom+20) : ($count-20);
88 my $prevstartfrom=($startfrom-20>0) ? ($startfrom-20) : (0);
89 $template->param(startfrom => $startfrom+1,
90                                                 endat => $startfrom+20,
91                                                 numrecords => $count,
92                                                 nextstartfrom => $nextstartfrom,
93                                                 prevstartfrom => $prevstartfrom,
94                                                 BIBLIO_RESULTS => $resultsarray,
95                                                 ITEM_RESULTS => $itemsarray,
96                                                 WEB_RESULTS => $webarray,
97                                                 SITE_RESULTS => $sitearray,
98                                                 loggedinuser => $loggedinuser,
99                                                 biblionumber => $biblionumber);
100
101 output_html_with_http_headers $query, $cookie, $template->output;
102
103
104 # Local Variables:
105 # tab-width: 8
106 # End: