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