diff --git a/module/VuFind/src/VuFind/Search/EDS/Params.php b/module/VuFind/src/VuFind/Search/EDS/Params.php index 26d72d9ed2ebe9a6dd18f8b2b4b5fb4f336297ea..f8d8d99822ef59bb3a6f66b5bdba3f1086c7bda9 100644 --- a/module/VuFind/src/VuFind/Search/EDS/Params.php +++ b/module/VuFind/src/VuFind/Search/EDS/Params.php @@ -79,6 +79,19 @@ class Params extends \VuFind\Search\Base\Params */ public $isSetupOnly = false; + /** + * Constructor + * + * @param \VuFind\Search\Base\Options $options Options to use + * @param \VuFind\Config\PluginManager $configLoader Config loader + */ + public function __construct($options, \VuFind\Config\PluginManager $configLoader) + { + parent::__construct($options, $configLoader); + $this->addLimitersAsCheckboxFacets($options); + $this->addExpandersAsCheckboxFacets($options); + } + /** * Pull the search parameters * @@ -167,8 +180,6 @@ class Params extends \VuFind\Search\Base\Params } } } - $this->addLimitersAsCheckboxFacets($options); - $this->addExpandersAsCheckboxFacets($options); } /**