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