Jonathan Druart
6f204fdf96
There is a "debug" parameter we are passing from the controller scripts to C4::Auth::get_template_and_user, but it's not actually used! Test plan: Confirm the assumption Review the changes from this patch Generated with: perl -p -i -e 's#\s*debug\s*=\>\s*(0|1),?\s*##gms' **/*.pl git checkout misc/devel/update_dbix_class_files.pl # Wrong catch + Manual fix in acqui/neworderempty.pl Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
31 lines
997 B
Perl
Executable file
31 lines
997 B
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
use Modern::Perl;
|
|
use CGI qw ( -utf8 );
|
|
use C4::Context;
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use Koha::SuggestionEngine;
|
|
use Module::Load::Conditional qw(can_load);
|
|
use JSON;
|
|
|
|
my $input = CGI->new;
|
|
|
|
my ($template, $loggedinuser, $cookie)
|
|
= get_template_and_user({template_name => "admin/didyoumean.tt",
|
|
query => $input,
|
|
type => "intranet",
|
|
flagsrequired => {parameters => 'manage_didyoumean'},
|
|
});
|
|
|
|
my $opacplugins = from_json(C4::Context->preference('OPACdidyoumean') || '[]');
|
|
|
|
my @pluginlist = Koha::SuggestionEngine::AvailablePlugins();
|
|
foreach my $plugin (@pluginlist) {
|
|
next if $plugin eq 'Koha::SuggestionEngine::Plugin::Null';
|
|
next unless (can_load( modules => { "$plugin" => undef } ));
|
|
push @$opacplugins, { name => $plugin->NAME } unless grep { $_->{name} eq $plugin->NAME } @$opacplugins;
|
|
}
|
|
$template->{VARS}->{OPACpluginlist} = $opacplugins;
|
|
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|