ug 7561: Fast cataloging - Allow add/edit items and delete record
[koha.git] / cataloguing / value_builder / unimarc_field_210c_bis.pl
blobe7d09032aafa5c593610619ffcbf14b04c2430b8
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 =head1 SYNOPSIS
22 This plugin is used to map isbn/editor with collection.
23 It need :
24 in thesaurus, a category named EDITORS
25 in this category, datas must be entered like following :
26 isbn separator editor separator collection.
27 for example :
28 2204 -- Cerf -- Cogitatio fidei
29 2204 -- Cerf -- Le Magistere de l'Eglise
30 2204 -- Cerf -- Lectio divina
31 2204 -- Cerf -- Lire la Bible
32 2204 -- Cerf -- Pour lire
33 2204 -- Cerf -- Sources chretiennes
35 when the user clic on ... on 225a line, the popup shows the list of collections from the selected editor
36 if the biblio has no isbn, then the search if done on editor only
37 If the biblio ha an isbn, the search is done on isbn and editor. It's faster.
39 =cut
41 use strict;
43 #use warnings; FIXME - Bug 2505
44 use C4::Auth;
45 use CGI qw ( -utf8 );
46 use C4::Context;
48 use C4::AuthoritiesMarc;
49 use C4::Output;
51 =head1 FUNCTIONS
53 =head2 plugin_parameters
55 plugin_parameters : other parameters added when the plugin is called by the dopop function
57 =cut
59 sub plugin_parameters {
60 my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
61 return "";
64 sub plugin_javascript {
65 my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
66 my $function_name = $field_number;
67 my $res = "
68 <script type=\"text/javascript\">
69 function Focus$function_name(subfield_managed) {
70 return 1;
73 function Blur$function_name(subfield_managed) {
74 return 1;
77 function Clic$function_name(index) {
78 window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_210c_bis.pl&index=\"+index,\"unimarc210c\",'width=500,height=400,toolbar=false,scrollbars=no');
80 </script>
83 return ( $function_name, $res );
86 sub plugin {
87 my ($input) = @_;
88 my $index = $input->param('index');
89 my $result = $input->param('result');
90 my $editor_found = $input->param('editor_found');
91 my $AuthoritySeparator = C4::Context->preference("AuthoritySeparator");
93 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
94 { template_name => "cataloguing/value_builder/unimarc_field_210c_bis.tt",
95 query => $input,
96 type => "intranet",
97 authnotrequired => 0,
98 flagsrequired => { editcatalogue => '*' },
99 debug => 1,
103 $template->param(
104 index => $index,
106 output_html_with_http_headers $input, $cookie, $template->output;