adding authentification with Auth.pm
[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_parameters {
31 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
32 return "";
33 }
34 sub plugin_javascript {
35 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
36 my $function_name= "100".(int(rand(100000))+1);
37 my $res="
38 <script>
39 function Focus$function_name(subfield_managed) {
40 return 1;
41 }
42
43 function Blur$function_name(subfield_managed) {
44         return 1;
45 }
46
47 function Clic$function_name(i) {
48         defaultvalue=document.forms[0].field_value[i].value;
49         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');
50
51 }
52 </script>
53 ";
54
55 return ($function_name,$res);
56 }
57 sub plugin {
58 my ($input) = @_;
59         my %env;
60
61 #       my $input = new CGI;
62         my $index= $input->param('index');
63         my $result= $input->param('result');
64
65
66         my $dbh = C4::Context->dbh;
67
68 my ($template, $loggedinuser, $cookie)
69     = get_template_and_user({template_name => "value_builder/unimarc_field_100.tmpl",
70                              query => $input,
71                              type => "intranet",
72                              authnotrequired => 0,
73                              flagsrequired => {parameters => 1},
74                              debug => 1,
75                              });
76         my $f1 = substr($result,0,8);
77         my $f2 = substr($result,8,1);
78         my $f3 = substr($result,9,4);
79         my $f4 = substr($result,13,4);
80         $template->param(index => $index,
81                                                         f1 => $f1,
82                                                         f3 => $f3,
83                                                         "f2$f2" => $f2,
84                                                         f4 => $f4);
85         print $input->header(-cookie => $cookie),$template->output;
86 }
87
88 1;