コード例 #1
0
ファイル: SolrMarc.php プロジェクト: bbeckman/NDL-VuFind2
 /**
  * Get an array of information about record holdings, obtained in real-time
  * from the ILS.
  *
  * @return array
  */
 public function getRealTimeHoldings()
 {
     return $this->hasILS() ? $this->holdLogic->getHoldings($this->getUniqueID(), $this->getConsortialIDs()) : [];
 }
コード例 #2
0
ファイル: SolrMarc.php プロジェクト: no-reply/cbpl-vufind
 /**
  * Get an array of information about record holdings, obtained in real-time
  * from the ILS.
  *
  * @param \VuFind\Auth\Manager $account Auth manager object
  *
  * @return array
  */
 public function getRealTimeHoldings(\VuFind\Auth\Manager $account)
 {
     $holdLogic = new HoldLogic($account, $this->getILS());
     return $holdLogic->getHoldings($this->getUniqueID());
 }