Horde_Kolab_Storage_Data::getObjectByBackendId PHP Method

getObjectByBackendId() public method

Retrieve an object in the current folder by backend id.
public getObjectByBackendId ( string $uid ) : array
$uid string Backend id of the object to be returned.
return array An array of all objects.
    public function getObjectByBackendId($uid);

Usage Example

Example #1
0
File: Log.php Project: horde/horde
 /**
  * Retrieve an object in the current folder by backend id.
  *
  * @param string $uid Backend id of the object to be returned.
  *
  * @return array An array of all objects.
  */
 public function getObjectByBackendId($uid)
 {
     return $this->_data->getObjectByBackendId($uid);
 }