_save() 보호된 메소드

Saves the specified object in the SQL database.
protected _save ( Turba_Object $object ) : string
$object Turba_Object The object to save
리턴 string The object id, possibly updated.
예제 #1
0
파일: Share.php 프로젝트: horde/horde
 /**
  * Saves the specified object in the SQL database.
  *
  * @param Turba_Object $object  The object to save
  *
  * @return string  The object id, possibly updated.
  * @throws Turba_Exception
  */
 protected function _save(Turba_Object $object)
 {
     return $this->_driver->_save($object);
 }