Bug 14735: Save cache_expiry on modifying a report
[koha.git] / cataloguing / plugin_launcher.pl
bloba14902a7363f6526134e1a3fe895d96f216faa15
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use CGI;
24 use C4::Context;
25 use C4::Output;
27 my $input = new CGI;
28 my $plugin_name="cataloguing/value_builder/".$input->param("plugin_name");
30 # opening plugin. Just check whether we are on a developer computer on a production one
31 # (the cgidir differs)
32 my $cgidir = C4::Context->intranetdir ."/cgi-bin";
33 my $vbdir = "$cgidir/cataloguing/value_builder";
34 unless (-r $vbdir and -d $vbdir) {
35 $cgidir = C4::Context->intranetdir;
37 do $cgidir."/".$plugin_name;
38 &plugin($input);