X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=cataloguing%2Fplugin_launcher.pl;h=90105f326cd1dac99a8d3d01aaf426c9a885d848;hb=5fd51573a5dea1422b6c8fe2857541c8d59d1b0c;hp=9a264ab16161ba7367c6451385a870c68f7533cb;hpb=c9ba8c899d854d4190df783f3f1aec2989d2cb10;p=srvgit diff --git a/cataloguing/plugin_launcher.pl b/cataloguing/plugin_launcher.pl index 9a264ab161..90105f326c 100755 --- a/cataloguing/plugin_launcher.pl +++ b/cataloguing/plugin_launcher.pl @@ -1,38 +1,29 @@ #!/usr/bin/perl - # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 -use CGI; -use C4::Context; -use C4::Output; +use Modern::Perl; +use CGI qw ( -utf8 ); -my $input = new CGI; -my $plugin_name="cataloguing/value_builder/".$input->param("plugin_name"); +use Koha::FrameworkPlugin; -# opening plugin. Just check wether we are on a developper computer on a production one -# (the cgidir differs) -my $cgidir = C4::Context->intranetdir ."/cgi-bin"; -my $vbdir = "$cgidir/cataloguing/value_builder"; -unless (-r $vbdir and -d $vbdir) { - $cgidir = C4::Context->intranetdir; -} -do $cgidir."/".$plugin_name; -&plugin($input); +my $input = CGI->new; +my $plugin= Koha::FrameworkPlugin->new( { + name => scalar $input->param("plugin_name"), +}); +$plugin->launch({ cgi => $input });