コード例 #1
0
ファイル: SolrAuth.php プロジェクト: bbeckman/NDL-VuFind2
 /**
  * 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';
 }
コード例 #2
0
ファイル: SolrStats.php プロジェクト: bharatm/NDL-VuFind
 /**
  * Constructor
  *
  * @param string $host The URL for the local Solr Server
  *
  * @access public
  */
 public function __construct($host)
 {
     parent::__construct($host, 'stats');
 }
コード例 #3
0
ファイル: SolrReserves.php プロジェクト: bharatm/NDL-VuFind
 /**
  * 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';
 }
コード例 #4
0
ファイル: SolrReserves.php プロジェクト: bbeckman/NDL-VuFind2
 /**
  * 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';
 }
コード例 #5
0
ファイル: SolrAuth.php プロジェクト: bryandease/VuFind-Plus
 /**
  * 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';
 }