1 package Koha
::SuggestionEngine
::Base
;
3 # Copyright 2012 C & P Bibliography Services
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 Koha::SuggestionEngine::Base - Base class for SuggestionEngine plugins
26 use base qw(Koha::SuggestionEngine::Base);
30 Base class for suggestion engine plugins. SuggestionEngines must
31 provide the following methods:
33 B<get_suggestions (\%param)> - get suggestions for the search described
34 in $param->{'search'}, and return them in a hashref with the suggestions
35 as keys and relevance as values.
37 B<NAME> - return a string with the name of the plugin.
39 B<VERSION> - return a string with the version of the plugin.
41 These methods may be overriden:
43 B<initialize (%params)> - initialize the plugin
45 B<destroy ()> - destroy the plugin
47 These methods should not be overridden unless you are very sure of what
50 B<new ()> - create a new plugin object
59 use base
qw(Class::Accessor);
61 __PACKAGE__
->mk_ro_accessors(qw( name version ));
62 __PACKAGE__
->mk_accessors(qw( params ));
66 my $plugin = Koha::SuggestionEngine::Base->new;
75 my $self = $class->SUPER::new
( {} ); #name => $class->NAME,
76 #version => $class->VERSION });
84 $plugin->initalize(%params);
86 Initialize a filter using the specified parameters.
94 #$self->params = $params;
112 =head2 get_suggestions
114 my $suggestions = $plugin->get_suggestions(\%param);
116 Return suggestions for the specified search.
120 sub get_suggestions
{