removing all useless %env / $env
[koha.git] / cataloguing / value_builder / marc21_field_005.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 require Exporter;
24 use C4::AuthoritiesMarc;
25 use C4::Auth;
26 use C4::Context;
27 use C4::Output;
28 use C4::Interface::CGI::Output;
29 use CGI;
30 use C4::Search;
31 use MARC::Record;
32 use C4::Koha;
33
34
35 =head1
36
37 plugin_parameters : other parameters added when the plugin is called by the dopop function
38
39 =cut
40 sub plugin_parameters {
41 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
42 return "";
43 }
44
45 =head1
46
47 plugin_javascript : the javascript function called when the user enters the subfield.
48 contain 3 javascript functions :
49 * one called when the field is entered (OnFocus). Named FocusXXX
50 * one called when the field is leaved (onBlur). Named BlurXXX
51 * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
52
53 returns :
54 * XXX
55 * a variable containing the 3 scripts.
56 the 3 scripts are inserted after the <input> in the html code
57
58 =cut
59 sub plugin_javascript {
60 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
61 my $function_name= "210c".(int(rand(100000))+1);
62
63 # find today's date
64 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
65                                                                localtime(time);
66 $year +=1900;
67 $mon +=1;
68 if (length($mon)==1) {
69         $mon = "0".$mon;
70 }
71 if (length($mday)==1) {
72         $mday = "0".$mday;
73 }
74 if (length($hour)==1) {
75         $hour = "0".$hour;
76 }
77 if (length($min)==1) {
78         $min = "0".$min;
79 }
80 if (length($sec)==1) {
81         $hour = "0".$sec;
82 }
83
84
85 my $date = "$year$mon$mday$hour$min$sec".".0";
86 my $res  = "
87 <script>
88 function Blur$function_name(index) {
89 //need this?
90 }
91
92 function Focus$function_name(subfield_managed) {
93         for (i=0 ; i<document.f.field_value.length ; i++) {
94                 if (document.f.tag[i].value == '005') {
95                         document.f.field_value[i].value = '$date';
96                 }
97         }
98 return 0;
99 }
100
101 function Clic$function_name(subfield_managed) {
102 }
103 </script>
104 ";
105 return ($function_name,$res);
106 }
107
108 =head1
109
110 plugin : the true value_builded. The screen that is open in the popup window.
111
112 =cut
113
114 sub plugin {
115 my ($input) = @_;
116 return "";
117 }
118
119 1;