Synching with default template
[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 use C4::Date;
31
32 my $query=new CGI;
33 my $type=$query->param('type');
34 ($type) || ($type='intra');
35
36 my $biblionumber=$query->param('bib');
37
38 # change back when ive fixed request.pl
39 my @items = ItemInfo(undef, $biblionumber, $type);
40 my $norequests = 1;
41 foreach my $itm (@items) {
42      $norequests = 0 unless $itm->{'notforloan'};
43 }
44
45
46
47 my $dat=bibdata($biblionumber);
48 my ($authorcount, $addauthor)= &addauthor($biblionumber);
49 my ($webbiblioitemcount, @webbiblioitems) = &getwebbiblioitems($biblionumber);
50 my ($websitecount, @websites)             = &getwebsites($biblionumber);
51 my ($subjectcount, $subjects) = &subject($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 $dat->{'subjects'}=$subjects->[0]->{'subject'};
62 for (my $i = 1; $i < $subjectcount; $i++) {
63         $dat->{'subjects'} .= ", " . $subjects->[$i]->{'subject'};
64 } # for
65
66 my @results;
67
68 $results[0]=$dat;
69
70 my $resultsarray=\@results;
71 my $itemsarray=\@items;
72 my $webarray=\@webbiblioitems;
73 my $sitearray=\@websites;
74
75 my $startfrom=$query->param('startfrom');
76 ($startfrom) || ($startfrom=0);
77
78 my ($template, $loggedinuser, $cookie) = get_template_and_user({
79         template_name   => ($type eq 'opac'? 'catalogue/detail-opac.tmpl':
80                                              'catalogue/detail.tmpl'),
81         query           => $query,
82         type            => "intranet",
83         authnotrequired => ($type eq 'opac'),
84         flagsrequired   => {catalogue => 1},
85     });
86
87 my $count=1;
88
89 # now to get the items into a hash we can use and whack that thru
90
91
92 my $nextstartfrom=($startfrom+20<$count-20) ? ($startfrom+20) : ($count-20);
93 my $prevstartfrom=($startfrom-20>0) ? ($startfrom-20) : (0);
94 $template->param(startfrom => $startfrom+1,
95                                                 endat => $startfrom+20,
96                                                 numrecords => $count,
97                                                 nextstartfrom => $nextstartfrom,
98                                                 prevstartfrom => $prevstartfrom,
99                                                 BIBLIO_RESULTS => $resultsarray,
100                                                 ITEM_RESULTS => $itemsarray,
101                                                 WEB_RESULTS => $webarray,
102                                                 SITE_RESULTS => $sitearray,
103                                                 loggedinuser => $loggedinuser,
104                                                 biblionumber => $biblionumber,
105                                                 );
106
107 output_html_with_http_headers $query, $cookie, $template->output;
108
109
110 # Local Variables:
111 # tab-width: 8
112 # End: