Esempio n. 1
0
 /**
  * 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';
 }
Esempio n. 2
0
 /**
  * Constructor
  *
  * @param string $host The URL for the local Solr Server
  *
  * @access public
  */
 public function __construct($host)
 {
     parent::__construct($host, 'stats');
 }
Esempio n. 3
0
 /**
  * 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';
 }
Esempio n. 4
0
 /**
  * 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';
 }
Esempio n. 5
0
 /**
  * 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';
 }