/** * Constructor * * @param \VuFind\Search\Results\PluginManager $results Results plugin manager */ public function __construct(\VuFind\Search\Results\PluginManager $results) { parent::__construct($results); $this->defaultDisplayField = 'heading'; $this->searchClassId = 'SolrAuth'; }
/** * Constructor * * @param string $host The URL for the local Solr Server * * @access public */ public function __construct($host) { parent::__construct($host, 'stats'); }
/** * Constructor * * @param string $host The URL for the local Solr Server * * @access public */ public function __construct($host) { parent::__construct($host, 'reserves'); $this->searchSpecsFile = 'conf/reservessearchspecs.yaml'; }
/** * Constructor * * @param \VuFind\Search\Results\PluginManager $results Results plugin manager */ public function __construct(\VuFind\Search\Results\PluginManager $results) { parent::__construct($results); $this->defaultDisplayField = 'course'; $this->searchClassId = 'SolrReserves'; }
/** * Constructor * * @param string $host The URL for the local Solr Server * * @access public */ public function __construct($host) { parent::__construct($host, 'authority'); $this->searchSpecsFile = 'conf/authsearchspecs.yaml'; }