Bug 25423: Add Koha::Exceptions::Object::NotInstantiated
[koha.git] / admin / didyoumean.pl
1 #!/usr/bin/perl
2
3 use Modern::Perl;
4 use CGI qw ( -utf8 );
5 use C4::Context;
6 use C4::Auth;
7 use C4::Output;
8 use Koha::SuggestionEngine;
9 use Module::Load::Conditional qw(can_load);
10 use JSON;
11
12 my $input = new CGI;
13
14 my ($template, $loggedinuser, $cookie)
15     = get_template_and_user({template_name => "admin/didyoumean.tt",
16             query => $input,
17             type => "intranet",
18             authnotrequired => 0,
19             flagsrequired => {parameters => 'manage_didyoumean'},
20             debug => 1,
21             });
22
23 my $opacplugins = from_json(C4::Context->preference('OPACdidyoumean') || '[]');
24
25 my @pluginlist = Koha::SuggestionEngine::AvailablePlugins();
26 foreach my $plugin (@pluginlist) {
27     next if $plugin eq 'Koha::SuggestionEngine::Plugin::Null';
28     next unless (can_load( modules => { "$plugin" => undef } ));
29     push @$opacplugins, { name => $plugin->NAME } unless grep { $_->{name} eq $plugin->NAME } @$opacplugins;
30 }
31 $template->{VARS}->{OPACpluginlist} = $opacplugins;
32
33 output_html_with_http_headers $input, $cookie, $template->output;