예제 #1
0
 /**
  * Protected support method for getMyHolds.
  *
  * @param array $row An sql row
  *
  * @return array Keyed data
  */
 protected function processHoldsRow($row)
 {
     $hold = parent::processHoldsRow($row);
     // item# not populated by Horizon,
     // this is provided for VuFind matching
     if ($hold) {
         $hold['item_id'] = $row['BIB_NUM'];
     }
     return $hold;
 }