First round translation
[koha.git] / value_builder / unimarc_field_100.pl
1 #!/usr/bin/perl
2
3 # $Id$
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 C4::Auth;
24 use CGI;
25 use C4::Context;
26 use HTML::Template;
27 use C4::Search;
28 use C4::Output;
29
30 sub plugin_javascript {
31 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
32 my $function_name= "100".(int(rand(100000))+1);
33 my $res="
34 <script>
35 function Focus$function_name(subfield_managed) {
36 return 1;
37 }
38
39 function Blur$function_name(subfield_managed) {
40         return 1;
41 }
42
43 function Clic$function_name(i) {
44         defaultvalue=document.forms[0].field_value[i].value;
45         newin=window.open(\"../plugin_launcher.pl?plugin_name=unimarc_field_100.pl&index=\"+i+\"&result=\"+defaultvalue,\"unimarc field 100\",'width=500,height=400,toolbar=false,scrollbars=yes');
46
47 }
48 </script>
49 ";
50
51 return ($function_name,$res);
52 }
53 sub plugin {
54 my ($input) = @_;
55         my %env;
56
57 #       my $input = new CGI;
58         my $index= $input->param('index');
59         my $result= $input->param('result');
60
61
62         my $dbh = C4::Context->dbh;
63
64 my ($template, $loggedinuser, $cookie)
65     = get_template_and_user({template_name => "value_builder/unimarc_field_100.tmpl",
66                              query => $input,
67                              type => "intranet",
68                              authnotrequired => 0,
69                              flagsrequired => {parameters => 1},
70                              debug => 1,
71                              });
72         my $f1 = substr($result,0,8);
73         my $f2 = substr($result,8,1);
74         my $f3 = substr($result,9,4);
75         my $f4 = substr($result,13,4);
76         $template->param(index => $index,
77                                                         f1 => $f1,
78                                                         f3 => $f3,
79                                                         "f2$f2" => $f2,
80                                                         f4 => $f4);
81         print $input->header(-cookie => $cookie),$template->output;
82 }
83
84 1;