Merge commit 'koha-biblibre/master' into bl-acq
[koha.git] / cataloguing / value_builder / unimarc_field_115a.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
25
26 use C4::Search;
27 use C4::Output;
28
29 =head1
30
31 plugin_parameters : other parameters added when the plugin is called by the dopop function
32
33 =cut
34
35 sub plugin_parameters {
36     my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
37     return "";
38 }
39
40 sub plugin_javascript {
41     my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
42     my $res = "
43     <script type=\"text/javascript\">
44     function Focus$field_number() {
45         return 1;
46     }
47
48     function Blur$field_number() {
49         return 1;
50     }
51
52     function Clic$field_number(i) {
53         var defaultvalue;
54         try {
55             defaultvalue = document.getElementById(i).value;
56         } catch(e) {
57             alert('error when getting '+i);
58             return;
59         }
60         window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_115a.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 115a\",'width=1200,height=600,toolbar=false,scrollbars=yes');
61     }
62
63     </script>
64     ";
65
66     return ( $field_number, $res );
67 }
68
69 sub plugin {
70     my ($input) = @_;
71     my $index   = $input->param('index');
72     my $result  = $input->param('result');
73
74     my $dbh = C4::Context->dbh;
75     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
76         {
77             template_name =>
78               "cataloguing/value_builder/unimarc_field_115a.tmpl",
79             query           => $input,
80             type            => "intranet",
81             authnotrequired => 0,
82             flagsrequired   => { editcatalogue => '*' },
83             debug           => 1,
84         }
85     );
86     my $f1  = substr( $result, 0,  1 );
87     my $f2  = substr( $result, 1,  3 );
88     my $f3  = substr( $result, 4,  1 );
89     my $f4  = substr( $result, 5,  1 );
90     my $f5  = substr( $result, 6,  1 );
91     my $f6  = substr( $result, 7,  1 );
92     my $f7  = substr( $result, 8,  1 );
93     my $f8  = substr( $result, 9,  1 );
94     my $f9  = substr( $result, 10, 1 );
95     my $f10 = substr( $result, 11, 1 );
96     my $f11 = substr( $result, 12, 1 );
97     my $f12 = substr( $result, 13, 1 );
98     my $f13 = substr( $result, 14, 1 );
99     my $f14 = substr( $result, 15, 1 );
100     my $f15 = substr( $result, 16, 1 );
101     my $f16 = substr( $result, 17, 1 );
102     my $f17 = substr( $result, 18, 1 );
103     my $f18 = substr( $result, 19, 1 );
104
105     $template->param(
106         index     => $index,
107         "f1$f1"   => 1,
108         "f2"      => $f2,
109         "f3$f3"   => 1,
110         "f4$f4"   => 1,
111         "f5$f5"   => 1,
112         "f6$f6"   => 1,
113         "f7$f7"   => 1,
114         "f8$f8"   => 1,
115         "f9$f9"   => 1,
116         "f10$f10" => 1,
117         "f11$f11" => 1,
118         "f12$f12" => 1,
119         "f13$f13" => 1,
120         "f14$f14" => 1,
121         "f15$f15" => 1,
122         "f16$f16" => 1,
123         "f17$f17" => 1,
124         "f18$f18" => 1
125     );
126
127     output_html_with_http_headers $input, $cookie, $template->output;
128 }
129
130 1;