3 # written 10/5/2002 by Paul
5 # Copyright 2000-2002 Katipo Communications
7 # This file is part of Koha.
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
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.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #use warnings; FIXME - Bug 2505
33 plugin unimarc_field_700-4
37 This plug-in deals with unimarc field 700-4 (
47 sub plugin_parameters
{
48 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
52 sub plugin_javascript
{
53 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
54 my $function_name= $field_number;
57 function Focus$function_name(index) {
61 function Blur$function_name(subfield_managed) {
65 function Clic$function_name(subfield_managed) {
66 defaultvalue=document.getElementById(\"$field_number\").value;
67 newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_700-4.pl&result=\"+defaultvalue+\"&index=$field_number\",\"value_builder\",'width=500,height=400,toolbar=false,scrollbars=yes');
73 return ($function_name,$res);
78 my $index= $input->param('index');
79 my $index2= $input->param('index2');
80 $index2=-1 unless($index2);
81 my $result= $input->param('result');
84 my $dbh = C4
::Context
->dbh;
86 my ($template, $loggedinuser, $cookie)
87 = get_template_and_user
({template_name
=> "cataloguing/value_builder/unimarc_field_700-4.tmpl",
91 flagsrequired
=> {editcatalogue
=> '*'},
94 $template->param(index => $index,
96 "f1_$result" => "f1_".$result,
98 output_html_with_http_headers
$input, $cookie, $template->output;