Bug 4266: Hide Encumbrance and Expenditure in aqbudgets.tt
[koha.git] / Koha / SearchEngine / Search.pm
1 package Koha::SearchEngine::Search;
2 use Moose;
3 use C4::Context;
4
5 use Moose::Util qw( apply_all_roles );
6
7 sub BUILD {
8     my $self = shift;
9     my $syspref = C4::Context->preference("SearchEngine");
10     apply_all_roles( $self, "Koha::SearchEngine::${syspref}::Search" );
11 };
12 1;