Esempio n. 1
0
 /**
  * Method override to check-in a record or an array of record
  *
  * @param   mixed  $pks  The ID of the primary key or an array of IDs
  *
  * @return  mixed  Boolean false if there is an error, otherwise the count of records checked in.
  *
  * @since   11.1
  */
 public function checkin($pks = array())
 {
     // make keys to array
     $pks = $this->_getPrimaryKeys($pks);
     // Execute parent
     $result = parent::checkin($pks);
     // Build Return Object
     return $this->_setReturnValue($result);
 }