road to 1.3.2
[koha.git] / value_builder / unimarc_field_700-4.pl
1 #!/usr/bin/perl
2
3 # written 10/5/2002 by Paul
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use strict;
23 use CGI;
24 use C4::Context;
25 use HTML::Template;
26 use C4::Search;
27 use C4::Output;
28
29 sub plugin_parameters {
30 my ($dbh,$record,$tagslib,$morethan,$begin_tabloop) = @_;
31 my $index2; # the resulting index
32 my $i;          # counter
33 # loop to find 700$a subfield. We look for the 1st after $i
34 for (my $tabloop = $begin_tabloop; $tabloop<=9;$tabloop++) {
35         my @loop_data =();
36         foreach my $tag (keys %{$tagslib}) {
37 # loop through each subfield
38                 foreach my $subfield (keys %{$tagslib->{$tag}}) {
39                         next if ($subfield eq 'lib'); # skip lib and tabs, which are koha internal
40                         next if ($subfield eq 'tab');
41                         next if ($tagslib->{$tag}->{$subfield}->{tab}  ne $tabloop);
42                         if ($tag eq '700' && $subfield eq 'a' && $i>$morethan) {
43                                 $index2 = $i;
44                         }
45                         $i++;
46                 }
47         }
48 }
49 #       my $index2=6;
50         return "&index2=$index2";
51 }
52
53 sub plugin {
54 my ($input) = @_;
55         my %env;
56
57 #       my $input = new CGI;
58         my $index= $input->param('index');
59         my $index2= $input->param('index2');
60         $index2=-1 unless($index2);
61         my $result= $input->param('result');
62
63
64         my $dbh = C4::Context->dbh;
65
66         my $template = gettemplate("value_builder/unimarc_field_700-4.tmpl",0);
67         $template->param(index => $index,
68                                                         index2 => $index2,
69                                                         "f1_$result" => "f1_".$result,
70                                                         );
71         print "Content-Type: text/html\n\n", $template->output;
72 }
73
74 1;