Merge remote-tracking branch 'origin/new/bug_5347'
[koha.git] / cataloguing / value_builder / dateaccessioned.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 use warnings;
22
23 =head1
24
25 plugin_parameters : useless here
26
27 =cut
28
29 sub plugin_parameters {
30         # my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
31         return "";
32 }
33
34 =head1
35
36 plugin_javascript : the javascript function called when the user enters the subfield.
37 contain 3 javascript functions :
38 * one called when the   field  is entered (OnFocus) named FocusXXX
39 * one called when the   field  is  left   (onBlur ) named BlurXXX
40 * one called when the ... link is clicked (onClick) named ClicXXX
41
42 returns :
43 * XXX
44 * a variable containing the 3 scripts.
45 the 3 scripts are inserted after the <input> in the html code
46
47 =cut
48
49 sub plugin_javascript {
50         # my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
51         my $function_name = "dateaccessioned".(int(rand(100000))+1);
52
53     require C4::Dates;
54         my $date = C4::Dates->today('iso');
55
56         # find the tag/subfield mapped to items.dateaccessioned
57         my ($tag,$subfield) =  GetMarcFromKohaField("items.dateaccessioned","");
58         my $res  = <<END_OF_JS;
59 <script type="text/javascript">
60 //<![CDATA[
61 //  
62 // from: cataloguing/value_builder/dateaccessioned.pl
63
64 function Blur$function_name(index) {
65     //date validation could go here
66 }
67
68 function Focus$function_name(subfield_managed, id, force) {
69     //var summary = "";
70     //for (i=0 ; i<document.f.field_value.length ; i++) {
71     //  summary += i + ": " + document.f.tag[i].value + " " + document.f.subfield[i].value + ": " + document.f.field_value[i].value + "\\n"; 
72     //}
73     //alert("Got focus, subfieldmanaged: " + subfield_managed + "\\n" + summary);
74     set_to_today(id);
75     return 0;
76 }
77
78 function Clic$function_name(id) {
79     set_to_today(id, 1);
80     return 0;
81 }
82
83 function set_to_today(id, force) {
84     if (! id) { alert(_("Bad id ") + id + _(" sent to set_to_today()")); return 0; }
85     if (\$("#" + id).val() == '' || \$("#" + id).val() == '0000-00-00' || force) {
86         \$("#" + id).val("$date");
87     }
88 }
89 //]]>
90 </script>
91 END_OF_JS
92         return ($function_name, $res);
93 }
94
95 =head1
96
97 plugin: useless here.
98
99 =cut
100
101 sub plugin {
102 #    my ($input) = @_;
103     return "";
104 }
105
106 1;