corrected init script name for apache2
[koha.git] / opac / opac-topissues.pl
blobb77c0ab0c5c958d5c34519b6f07ca2379423c899
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
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.
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.
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
21 use strict;
22 use CGI;
23 use C4::Auth;
24 use C4::Context;
25 use C4::Search;
26 use C4::Output;
27 use C4::Koha;
28 use C4::Branch;
29 use Date::Manip;
31 =head1 NAME
33 plugin that shows a stats on borrowers
35 =head1 DESCRIPTION
37 =over 2
39 =cut
41 my $input = new CGI;
42 my $branches = GetBranches();
43 my $itemtypes = GetItemTypes();
45 my ($template, $borrowernumber, $cookie)
46 = get_template_and_user({template_name => 'opac-topissues.tmpl',
47 query => $input,
48 type => "opac",
49 authnotrequired => 1,
50 debug => 1,
51 });
52 my $dbh = C4::Context->dbh;
53 # Displaying results
54 my $limit = $input->param('limit') || 10;
55 my $branch = $input->param('branch');
56 my $itemtype = $input->param('itemtype');
57 my $timeLimit = $input->param('timeLimit') || 3;
58 my $whereclause;
59 $whereclause .= 'items.homebranch='.$dbh->quote($branch)." AND " if ($branch);
60 $whereclause .= 'biblioitems.itemtype='.$dbh->quote($itemtype)." AND " if $itemtype;
61 $whereclause .= ' TO_DAYS(NOW()) - TO_DAYS(biblio.datecreated) <= '.($timeLimit*30).' AND ' if $timeLimit < 999;
62 $whereclause =~ s/ AND $//;
63 $whereclause = " WHERE ".$whereclause if $whereclause;
65 my $query = "SELECT datecreated, biblio.biblionumber, title,
66 author, sum( items.issues ) AS tot, biblioitems.itemtype,
67 biblioitems.publishercode,biblioitems.publicationyear,
68 itemtypes.description
69 FROM biblio
70 LEFT JOIN items USING (biblionumber)
71 LEFT JOIN biblioitems USING (biblionumber)
72 LEFT JOIN itemtypes ON itemtypes.itemtype = biblioitems.itemtype
73 $whereclause
74 GROUP BY biblio.biblionumber
75 HAVING tot >0
76 ORDER BY tot DESC
77 LIMIT $limit
80 my $sth = $dbh->prepare($query);
81 $sth->execute();
82 my @results;
83 while (my $line= $sth->fetchrow_hashref) {
84 push @results, $line;
87 $template->param(do_it => 1,
88 limit => $limit,
89 branch => $branches->{$branch}->{branchname},
90 itemtype => $itemtypes->{$itemtype}->{description},
91 timeLimit => $timeLimit,
92 results_loop => \@results,
95 # load the branches
96 my $branches = GetBranches();
97 my @branch_loop;
98 for my $branch_hash (sort keys %$branches ) {
99 my $selected=(C4::Context->userenv && ($branch_hash eq C4::Context->userenv->{branch})) if (C4::Context->preference('SearchMyLibraryFirst'));
100 push @branch_loop,
102 value => "$branch_hash",
103 branchname => $branches->{$branch_hash}->{'branchname'},
104 selected => $selected
107 $template->param( branchloop => \@branch_loop, "mylibraryfirst"=>C4::Context->preference("SearchMyLibraryFirst"));
109 #doctype
110 my $itemtypes = GetItemTypes;
111 my @itemtypeloop;
112 foreach my $thisitemtype (keys %$itemtypes) {
113 my %row =(value => $thisitemtype,
114 description => $itemtypes->{$thisitemtype}->{'description'},
116 push @itemtypeloop, \%row;
119 $template->param(
120 itemtypeloop =>\@itemtypeloop,
122 output_html_with_http_headers $input, $cookie, $template->output;