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