Bug 24584: Rewrite optional/sample_itemtypes to YAML
[koha.git] / cataloguing / value_builder / unimarc_field_210c_bis.pl
blobe272ffd359e19e0942ba27a8f426be93443a8a03
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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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 Modern::Perl;
43 use C4::Auth;
44 use CGI qw ( -utf8 );
45 use C4::Context;
47 use C4::AuthoritiesMarc;
48 use C4::Output;
50 sub plugin_javascript {
51 my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
52 my $function_name = $field_number;
53 my $res = "
54 <script type=\"text/javascript\">
57 function Clic$function_name(index) {
58 window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_210c_bis.pl&index=\"+index,\"unimarc210c\",'width=500,height=400,toolbar=false,scrollbars=no');
60 </script>
63 return ( $function_name, $res );
66 sub plugin {
67 my ($input) = @_;
68 my $index = $input->param('index');
69 my $result = $input->param('result');
70 my $editor_found = $input->param('editor_found');
71 my $AuthoritySeparator = C4::Context->preference("AuthoritySeparator");
73 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
74 { template_name => "cataloguing/value_builder/unimarc_field_210c_bis.tt",
75 query => $input,
76 type => "intranet",
77 authnotrequired => 0,
78 flagsrequired => { editcatalogue => '*' },
79 debug => 1,
83 $template->param(
84 index => $index,
86 output_html_with_http_headers $input, $cookie, $template->output;