Bug 5502 - Patron card category search field should be menu
[koha.git] / cataloguing / value_builder / marc21_field_008_authorities.pl
blobf9a824a4968234ce55305d334245bc692b58f634
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
27 use C4::Search;
28 use C4::Output;
30 use constant FIXLEN_DATA_ELTS => '|| aca||aabn | a|a d';
31 use constant PREF_008 => 'MARCAuthorityControlField008';
33 =head1 DESCRIPTION
35 plugin_parameters : other parameters added when the plugin is called by the dopop function
37 =cut
39 # find today's date
40 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
42 $year +=1900; $mon +=1;
43 my $dateentered = substr($year,2,2).sprintf ("%0.2d", $mon).sprintf ("%0.2d",$mday);
44 my $defaultval = Field008();
46 sub plugin_parameters {
47 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
48 return "";
51 sub plugin_javascript {
52 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
53 my $function_name= $field_number;
54 my $res="
55 <script type=\"text/javascript\">
56 //<![CDATA[
58 function Focus$function_name(subfield_managed) {
59 if (!document.getElementById(\"$field_number\").value) {
60 var authtype=document.forms['f'].elements['authtypecode'].value;
61 var fieldval='$dateentered$defaultval';
62 if(authtype && (authtype == 'TOPIC_TERM' || authtype == 'GENRE/FORM' || authtype == 'CHRON_TERM')) {
63 fieldval= fieldval.substr(0,14)+'b'+fieldval.substr(15);
65 document.getElementById(\"$field_number\").value=fieldval;
67 return 1;
70 function Blur$function_name(subfield_managed) {
71 return 1;
74 function Clic$function_name(i) {
75 var authtype=document.forms['f'].elements['authtypecode'].value;
76 defaultvalue=document.getElementById(\"$field_number\").value;
77 newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_008_authorities.pl&index=$field_number&result=\"+defaultvalue+\"&authtypecode=\"+authtype,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
80 //]]>
81 </script>
84 return ($function_name,$res);
86 sub plugin {
87 my ($input) = @_;
88 my $index= $input->param('index');
89 my $result= $input->param('result');
90 my $authtype= $input->param('authtypecode')||'';
91 substr($defaultval,14-6,1)='b' if $authtype=~ /TOPIC_TERM|GENRE.FORM|CHRON_TERM/;
93 my $dbh = C4::Context->dbh;
95 my ($template, $loggedinuser, $cookie)
96 = get_template_and_user({template_name => "cataloguing/value_builder/marc21_field_008_authorities.tt",
97 query => $input,
98 type => "intranet",
99 authnotrequired => 0,
100 flagsrequired => {editcatalogue => '*'},
101 debug => 1,
103 $result = "$dateentered$defaultval" unless $result;
104 my @f;
105 for(0,6..17,28,29,31..33,38,39) {
106 $f[$_]=substr($result,$_,$_==0?6:1);
108 $template->param(index => $index);
110 $f[0]= $dateentered if !$f[0] || $f[0]=~/\s/;
111 $template->param(f1 => $f[0]);
113 for(6..17,28,29,31..33,38,39) {
114 $template->param(
115 "f$_" => $f[$_],
116 "f$_".($f[$_] eq '|'? 'pipe': $f[$_]) => $f[$_],
119 output_html_with_http_headers $input, $cookie, $template->output;
122 sub Field008 {
123 my $pref= C4::Context->preference(PREF_008);
124 if(!$pref) {
125 return FIXLEN_DATA_ELTS;
127 elsif(length($pref)<34) {
128 warn "marc21_field_008_authorities.pl: Syspref ".PREF_008." should be 34 characters long ";
129 return FIXLEN_DATA_ELTS;
131 return substr($pref,0,34); #ignore remainder