Ejemplo n.º 1
0
 /**
  * Place Item Hold
  *
  * This is responsible for both placing item level holds.
  *
  * @param   string  $recordId   The id of the bib record
  * @param   string  $itemId     The id of the item to hold
  * @param   string  $patronId   The id of the patron
  * @param   string  $comment    Any comment regarding the hold or recall
  * @param   string  $type       Whether to place a hold or recall
  * @return  mixed               True if successful, false if unsuccessful
  *                              If an error occures, return a PEAR_Error
  * @access  public
  */
 function placeItemHold($recordId, $itemId, $patronId, $comment, $type)
 {
     return $this->driver->placeItemHold($recordId, $itemId, $patronId, $comment, $type);
 }