Turba_Driver::_delete PHP Method

_delete() protected method

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

Example #1
0
 /**
  * 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);
 }