Bug 8717 - Wrong subscription notes are showing in catalogue detail view of serials...
[koha.git] / Koha / SearchEngine.pm
blob407156f229eb6807ca50433e3fa0c5c37319ebe1
1 package Koha::SearchEngine;
3 use Moose;
4 use C4::Context;
5 use Koha::SearchEngine::Config;
7 has 'name' => (
8 is => 'ro',
9 default => sub {
10 C4::Context->preference('SearchEngine');
14 has config => (
15 is => 'rw',
16 lazy => 1,
17 default => sub {
18 Koha::SearchEngine::Config->new;
20 # lazy => 1,
21 # builder => '_build_config',
24 #sub _build_config {
25 # my ( $self ) = @_;
26 # Koha::SearchEngine::Config->new( $self->name );
27 #);