Fridolin Somers
c7a7420f25
The amdin page for the "did you mean" feature has two block for setting it up in the staff interface, and a note saying this isn't implemented on the staff interface yet. We remove the part about the staff interface until it actually is implemented. Test plan : 1) Apply patch 2) Go to Administration > Did you mean? 3) See there is only the OPAC block 4) Change some checkboxes 5) Save configuration 6) Check that configuration is saved Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
33 lines
1 KiB
Perl
Executable file
33 lines
1 KiB
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 = new CGI;
|
|
|
|
my ($template, $loggedinuser, $cookie)
|
|
= get_template_and_user({template_name => "admin/didyoumean.tt",
|
|
query => $input,
|
|
type => "intranet",
|
|
authnotrequired => 0,
|
|
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;
|