more instances of branches => libraries
[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 CGI;
34 use C4::Biblio;
35 use C4::Koha;       # use getitemtypeinfo
36
37 my $query = new CGI;
38
39 my $dbh = C4::Context->dbh;
40
41 # open template
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
43     {
44         template_name   => "opac-tags_subject.tmpl",
45         query           => $query,
46         type            => "opac",
47         authnotrequired => 1,
48         debug           => 1,
49     }
50 );
51
52 my $number = $query->param('number') || 100;
53
54 my $sth = $dbh->prepare("SELECT entry,weight FROM tags ORDER BY weight DESC LIMIT $number");
55 $sth->execute;
56
57 my %result;
58 my $max=0;
59 my $min=9999;
60 my ($entry,$weight);
61 while (($entry,$weight) = $sth->fetchrow) {
62     $result{$entry}=$weight;
63     $max = $weight if $weight > $max;
64     $min = $weight if $weight < $min;
65 }
66
67 $min++ if $min == $max;
68
69 my @loop;
70 foreach my $entry (sort keys %result) {
71     my %line;
72     $line{entry} = $entry;
73     $line{weight} = int(($result{$entry}-$min)/($max-$min)*25)+10;
74     push @loop, \%line;
75 }
76 $template->param(
77     LOOP => \@loop,
78     number => $number
79 );
80
81 output_html_with_http_headers $query, $cookie, $template->output;