removing $dbh as a parameter in AuthoritiesMarc functions
[koha.git] / opac / opac-tags_subject.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 =head1 opac-tags_subject.pl
23
24 TODO :: Description here
25
26 =cut
27
28 use strict;
29 require Exporter;
30 use C4::Auth;
31 use C4::Context;
32 use C4::Output;
33 use C4::Interface::CGI::Output;
34 use CGI;
35 use C4::Biblio;
36 use C4::Koha;       # use getitemtypeinfo
37
38 my $query = new CGI;
39
40 my $dbh = C4::Context->dbh;
41
42 # open template
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44     {
45         template_name   => "opac-tags_subject.tmpl",
46         query           => $query,
47         type            => "opac",
48         authnotrequired => 1,
49         debug           => 1,
50     }
51 );
52
53 my $number = $query->param('number') || 100;
54
55 my $sth = $dbh->prepare("SELECT entry,weight FROM tags ORDER BY weight DESC LIMIT $number");
56 $sth->execute;
57
58 my %result;
59 my $max=0;
60 my $min=9999;
61 my ($entry,$weight);
62 while (($entry,$weight) = $sth->fetchrow) {
63     $result{$entry}=$weight;
64     $max = $weight if $weight > $max;
65     $min = $weight if $weight < $min;
66 }
67
68 $min++ if $min == $max;
69
70 my @loop;
71 foreach my $entry (sort keys %result) {
72     my %line;
73     $line{entry} = $entry;
74     $line{weight} = int(($result{$entry}-$min)/($max-$min)*25)+10;
75     push @loop, \%line;
76 }
77 $template->param(
78     LOOP => \@loop,
79     number => $number
80 );
81
82 output_html_with_http_headers $query, $cookie, $template->output;