96cc447045
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
32 lines
1,021 B
Perl
Executable file
32 lines
1,021 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'},
|
|
debug => 1,
|
|
});
|
|
|
|
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;
|