Turba_Driver::_delete PHP 메소드

_delete() 보호된 메소드

Deletes the specified contact from the addressbook.
protected _delete ( string $object_key, string $object_id )
$object_key string TODO
$object_id string TODO
    protected function _delete($object_key, $object_id)
    {
        throw new Turba_Exception(_("Deleting contacts is not available."));
    }

Usage Example

예제 #1
0
파일: Share.php 프로젝트: horde/horde
 /**
  * Deletes the specified contact from the addressbook.
  *
  * @param string $object_key TODO
  * @param string $object_id  TODO
  *
  * @throws Turba_Exception
  */
 protected function _delete($object_key, $object_id)
 {
     return $this->_driver->_delete($object_key, $object_id);
 }