repo.or.cz
/
koha.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bug 9722: DBrev 3.13.00.004 to add OpacShowHoldNotes syspref
[koha.git]
/
Koha
/
SearchEngine
/
Index.pm
blob
2807fbf98db1d7632bcdfeccaa1e4f472baf4da0
1
package
Koha
::
SearchEngine
::
Index
;
2
use
Moose
;
3
4
use
Moose
::
Util
qw( apply_all_roles )
;
5
6
sub
BUILD
{
7
my
$self
=
shift
;
8
my
$syspref
=
'Solr'
;
9
apply_all_roles
(
$self
,
"Koha::SearchEngine::${syspref}::Index"
);
10
};
11
1
;