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
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.
22 This plugin is used to map isbn/editor with collection.
24 in thesaurus, a category named EDITORS
25 in this category, datas must be entered like following :
26 isbn separator editor separator collection.
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.
45 #use warnings; FIXME - Bug 2505
50 use C4
::AuthoritiesMarc
;
55 plugin_parameters : other parameters added when the plugin is called by the dopop function
59 sub plugin_parameters
{
60 my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
64 sub plugin_javascript
{
65 my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
66 my $function_name = $field_number;
68 <script type=\"text/javascript\">
69 function Focus$function_name(subfield_managed) {
73 function Blur$function_name(subfield_managed) {
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');
83 return ( $function_name, $res );
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");
92 warn Data
::Dumper
::Dumper
$index;
94 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
95 { template_name
=> "cataloguing/value_builder/unimarc_field_210c_bis.tt",
99 flagsrequired
=> { editcatalogue
=> '*' },
107 output_html_with_http_headers
$input, $cookie, $template->output;