GetBorrowerIssues is deleted from C4::Circulation
[koha.git] / opac / opac-browser.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-browser.tmpl",
45         query           => $query,
46         type            => "opac",
47         authnotrequired => 1,
48         debug           => 1,
49     }
50 );
51
52 # the level of browser to display
53 my $level = $query->param('level') || 0;
54 my $filter = $query->param('filter');
55 $level++; # the level passed is the level of the PREVIOUS list, not the current one. Thus the ++
56
57 # build this level loop
58 my $sth = $dbh->prepare("SELECT * FROM browser WHERE level=? and classification like ? ORDER BY classification");
59 $sth->execute($level,$filter."%");
60 my @level_loop;
61 my $i=0;
62 while (my $line = $sth->fetchrow_hashref) {
63     $line->{description} =~ s/\((.*)\)//g;
64     $i++;
65     $line->{count3}=1 unless $i %3;
66     push @level_loop,$line;
67 }
68
69 # now rebuild hierarchy loop
70 $sth = $dbh->prepare("SELECT * FROM browser where classification=?");
71 $filter =~ s/\.//g;
72 my @hierarchy_loop;
73 for (my $i=1;$i <=length($filter);$i++) {
74     $sth->execute(substr($filter,0,$i));
75     my $line = $sth->fetchrow_hashref;
76     push @hierarchy_loop,$line;
77 }
78
79 $template->param(
80     LEVEL_LOOP => \@level_loop,
81     HIERARCHY_LOOP => \@hierarchy_loop,
82 );
83
84 output_html_with_http_headers $query, $cookie, $template->output;