Bug 13200 - Followup of Bug 12246 - noisy C4/Auth.pm
[koha.git] / cataloguing / value_builder / dateaccessioned.pl
blob2ae821a776111cff4a549d2a3b2389a676a06bd0
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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.
20 use Modern::Perl;
22 no warnings 'redefine';
24 =head1
26 plugin_parameters : useless here
28 =cut
30 sub plugin_parameters {
31 # my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
32 return "";
35 =head1
37 plugin_javascript : the javascript function called when the user enters the subfield.
38 contain 3 javascript functions :
39 * one called when the field is entered (OnFocus) named FocusXXX
40 * one called when the field is left (onBlur ) named BlurXXX
41 * one called when the ... link is clicked (onClick) named ClicXXX
43 returns :
44 * XXX
45 * a variable containing the 3 scripts.
46 the 3 scripts are inserted after the <input> in the html code
48 =cut
50 sub plugin_javascript {
51 # my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
52 my $function_name = "dateaccessioned".(int(rand(100000))+1);
54 require C4::Dates;
55 my $date = C4::Dates->today('iso');
57 # find the tag/subfield mapped to items.dateaccessioned
58 my ($tag,$subfield) = GetMarcFromKohaField("items.dateaccessioned","");
59 my $res = <<END_OF_JS;
60 <script type="text/javascript">
61 //<![CDATA[
62 //
63 // from: cataloguing/value_builder/dateaccessioned.pl
65 function Blur$function_name(index) {
66 //date validation could go here
69 function Focus$function_name(subfield_managed, id, force) {
70 //var summary = "";
71 //for (i=0 ; i<document.f.field_value.length ; i++) {
72 // summary += i + ": " + document.f.tag[i].value + " " + document.f.subfield[i].value + ": " + document.f.field_value[i].value + "\\n";
73 //}
74 //alert("Got focus, subfieldmanaged: " + subfield_managed + "\\n" + summary);
75 set_to_today(id);
76 return 0;
79 function Clic$function_name(id) {
80 set_to_today(id, 1);
81 return 0;
84 function set_to_today(id, force) {
85 if (! id) { alert(_("Bad id ") + id + _(" sent to set_to_today()")); return 0; }
86 if (\$("#" + id).val() == '' || \$("#" + id).val() == '0000-00-00' || force) {
87 \$("#" + id).val("$date");
90 //]]>
91 </script>
92 END_OF_JS
93 return ($function_name, $res);
96 =head1
98 plugin: useless here.
100 =cut
102 sub plugin {
103 # my ($input) = @_;
104 return "";