removing all useless %env / $env
[koha.git] / cataloguing / value_builder / marc21_field_008.pl
1
2 #!/usr/bin/perl
3
4 # $Id$
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA  02111-1307 USA
22
23 use strict;
24 use C4::Auth;
25 use CGI;
26 use C4::Context;
27
28 use C4::Search;
29 use C4::Output;
30
31 =head1
32
33 plugin_parameters : other parameters added when the plugin is called by the dopop function
34
35 =cut
36 # find today's date
37 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); 
38
39 $year +=1900; $mon +=1;
40 my $dateentered = substr($year,2,2).sprintf ("%0.2d", $mon).sprintf ("%0.2d",$mday);
41 sub plugin_parameters {
42         my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
43         return "";
44 }
45
46 sub plugin_javascript {
47         my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
48         my $function_name= "100".(int(rand(100000))+1);
49         my $res="
50 <script>
51 function Focus$function_name(subfield_managed) {
52     for (i=0 ; i<document.f.field_value.length ; i++) {
53         if (document.f.tag[i].value == '008') {
54             if (!document.f.field_value[i].value) {
55                 document.f.field_value[i].value = '$dateentered' + 't        xxu||||| |||| 00| 0 eng d';
56             }
57         }
58     }
59 return 1;
60 }
61
62 function Blur$function_name(subfield_managed) {
63         return 1;
64 }
65
66 function Clic$function_name(i) {
67         defaultvalue=document.forms['f'].field_value[i].value;
68         newin=window.open(\"plugin_launcher.pl?plugin_name=marc21_field_008.pl&index=\"+i+\"&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
69
70 }
71 </script>
72 ";
73
74         return ($function_name,$res);
75 }
76 sub plugin {
77         my ($input) = @_;
78         my $index= $input->param('index');
79         my $result= $input->param('result');
80
81
82         my $dbh = C4::Context->dbh;
83
84         my ($template, $loggedinuser, $cookie)
85     = get_template_and_user({template_name => "value_builder/marc21_field_008.tmpl",
86                              query => $input,
87                              type => "intranet",
88                              authnotrequired => 0,
89                              flagsrequired => {editcatalogue => 1},
90                              debug => 1,
91                              });
92 #       $result = "      t        xxu           00  0 eng d" unless $result;
93         $result = "$dateentered"."t        xxu||||| |||| 00| 0 eng d" unless $result;
94         my $f1 = substr($result,0,6);
95         my $f6 = substr($result,6,1);
96         my $f710 = substr($result,7,4);
97         my $f1114 = substr($result,11,4);
98         my $f1517 = substr($result,15,3);
99         my $f1821 = substr($result,18,4);
100         my $f22 = substr($result,22,1);
101         my $f23 = substr($result,23,1);
102         my $f2427 = substr($result,24,4);
103         my $f28 = substr($result,28,1);
104         my $f29 = substr($result,29,1);
105         my $f30 = substr($result,30,1);
106         my $f31 = substr($result,31,1);
107         my $f33 = substr($result,33,1);
108         my $f34 = substr($result,34,1);
109         my $f3537 = substr($result,35,3);
110         my $f38 = substr($result,38,1);
111         my $f39 = substr($result,39,1);
112
113 if ((!$f1) ||($f1 =~ m/ /)){
114         $f1=$dateentered;
115 }
116
117         $template->param(                               index => $index,
118                                                         f1 => $f1,
119                                                         f6 => $f6,
120                                                         "f6$f6" => $f6,
121                                                         f710 => $f710,
122                                                         f1114 => $f1114,
123                                                         f1517 => $f1517,
124                                                         f1821 => $f1821,
125                                                         f22 => $f22,
126                                                         "f22$f22" => $f22,
127                                                         f23 => $f23,
128                                                         "f23$f23" => $f23,
129                                                         f2427 => $f2427,
130                                                         "f24$f2427" => $f2427,
131                                                         f28 => $f28,
132                                                         "f28$f28" => $f28,
133                                                         f29 => $f29,
134                                                         "f29$f29" => $f29,
135                                                         f30 => $f30,
136                                                         "f230$f30" => $f30,
137                                                         f31 => $f31,
138                                                         "f31$f31" => $f31,
139                                                         f33 => $f33,
140                                                         "f33$f33" => $f33,
141                                                         f34 => $f34,
142                                                         "f34$f34" => $f34,
143                                                         f3537 => $f3537,
144                                                         f38 => $f38,
145                                                         "f38$f38" => $f38,
146                                                         f39 => $f39,
147                                                         "f39$f39" => $f39,
148                                         );
149         print $input->header(-cookie => $cookie),$template->output;
150 }
151
152 1;