oups... typo fix in z3950random field definition
[koha.git] / thesaurus_popup.pl
1 #!/usr/bin/perl
2
3 # written 10/5/2002 by Paul
4 # build result field using bibliothesaurus table
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use C4::Auth;
26 use CGI;
27 use C4::Context;
28 use HTML::Template;
29 use C4::Search;
30 use C4::Output;
31 use C4::Authorities;
32 use C4::Interface::CGI::Output;
33 # get all the data ....
34 my %env;
35
36 my $input = new CGI;
37 my $result = $input->param('result');
38 my $search_string= $input->param('search_string');
39 my $op = $input->param('op');
40 my $id = $input->param('id');
41 my $category = $input->param('category');
42 my $index= $input->param('index');
43 my $insert = $input->param('insert');
44
45 my $dbh = C4::Context->dbh;
46
47 # make the page ...
48 #print $input->header;
49 if ($op eq "select") {
50         my $sti = $dbh->prepare("select stdlib from bibliothesaurus where id=?");
51         $sti->execute($id);
52         my ($freelib_text) = $sti->fetchrow_array;
53         if (length($result)>0) {
54                 $result .= "|$freelib_text";
55         } else {
56                 $result = $freelib_text;
57         }
58 }
59 if ($op eq "add") {
60         newauthority($dbh,$category,$insert,$insert,'',1,'');
61         $search_string=$insert;
62 }
63 my ($template, $loggedinuser, $cookie)
64     = get_template_and_user({template_name => "thesaurus_popup.tmpl",
65                              query => $input,
66                              type => "intranet",
67                              authnotrequired => 0,
68                              flagsrequired => {parameters => 1},
69                              debug => 1,
70                              });
71 # /search thesaurus terms starting by search_string
72 my @freelib;
73 my %stdlib;
74 my $select_list;
75 if ($search_string) {
76 #       my $sti=$dbh->prepare("select id,freelib from bibliothesaurus where freelib like '".$search_string."%' and category ='$category'");
77         my $sti=$dbh->prepare("select id,freelib from bibliothesaurus where match (category,freelib) AGAINST (?) and category ='$category'");
78         $sti->execute($search_string);
79         while (my $line=$sti->fetchrow_hashref) {
80                 $stdlib{$line->{'id'}} = "$line->{'freelib'}";
81                 push(@freelib,$line->{'id'});
82         }
83         $select_list= CGI::scrolling_list( -name=>'id',
84                         -values=> \@freelib,
85                         -default=> "",
86                         -size=>1,
87                         -multiple=>0,
88                         -labels=> \%stdlib
89                         );
90 }
91 $template->param(select_list => $select_list,
92                                                 search_string => $search_string,
93                                                 result => $result,
94                                                 category => $category,
95                                                 index => $index
96                                                 );
97 output_html_with_http_headers $input, $cookie, $template->output;
98
99