save() 공개 메소드

Modifies an existing entry in the contact source.
public save ( Turba_Object $object ) : string
$object Turba_Object The object to update.
리턴 string The object id, possibly updated.
예제 #1
0
파일: Vbook.php 프로젝트: raz0rsdge/horde
 /**
  * @see Turba_Driver::_save
  */
 protected function _save(Turba_Object $object)
 {
     return $this->_driver->save($object);
 }
예제 #2
0
파일: Object.php 프로젝트: raz0rsdge/horde
 /**
  * Saves the current state of the object to the storage backend.
  *
  * @throws Turba_Exception
  */
 public function store()
 {
     $this->_ensureEmail();
     return $this->setValue('__key', $this->driver->save($this));
 }
예제 #3
0
파일: Object.php 프로젝트: DSNS-LAB/Dmail
 /**
  * Saves the current state of the object to the storage backend.
  *
  * @throws Turba_Exception
  */
 public function store()
 {
     return $this->setValue('__key', $this->driver->save($this));
 }