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