Merge commit 'koha-biblibre/master' into bl-acq
[koha.git] / cataloguing / value_builder / unimarc_field_686a.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 with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 use C4::Auth;
22 use CGI;
23 use C4::Context;
24
25 use C4::Search;
26 use C4::Output;
27
28 =head1 NAME
29
30 plugin unimarc_field_686a
31
32 =head1 SYNOPSIS
33
34 This plug-in deals with unimarc field 686a (
35
36 =head1 DESCRIPTION
37
38 =head1 FUNCTIONS
39
40 =over 2
41
42 =cut
43
44 sub plugin_javascript {
45 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
46 my $function_name= $field_number;
47 my $res  = "
48 <script>
49 function Focus$function_name(index) {
50         return 1;
51 }
52
53 function Blur$function_name(subfield_managed) {
54         return 1;
55 }
56
57 function Clic$function_name(subfield_managed) {
58         defaultvalue=document.getElementById(\"$field_number\").value;
59         newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_686a.pl&result=\"+defaultvalue+\"&index=$field_number\",\"value builder\",'width=700,height=600,toolbar=false,scrollbars=yes');
60
61 }
62 </script>
63 ";
64
65 return ($function_name,$res);
66 }
67
68 sub plugin {
69 my ($input) = @_;
70         my $index= $input->param('index');
71         my $index2= $input->param('index2');
72         $index2=-1 unless($index2);
73         my $result= $input->param('result');
74
75         my $dbh = C4::Context->dbh;
76
77         my ($template, $loggedinuser, $cookie)
78         = get_template_and_user({template_name => "cataloguing/value_builder/unimarc_field_686a.tmpl",
79                                         query => $input,
80                                         type => "intranet",
81                                         authnotrequired => 0,
82                                         flagsrequired => {editcatalogue => '*'},
83                                         debug => 1,
84                                         });
85         $template->param(index => $index,
86                                                         index2 => $index2,
87                                                         authtypecode => 'CLASSCD',
88                                                         );
89         output_html_with_http_headers $input, $cookie, $template->output;
90 }
91
92 1;