getBackendId() public method

Return the backend ID for the given object ID.
public getBackendId ( $object_id ) : string
return string The backend ID for the object.
Example #1
0
File: Log.php Project: horde/horde
 /**
  * Return the backend ID for the given object ID.
  *
  * @param string $object_uid The object ID.
  *
  * @return string The backend ID for the object.
  */
 public function getBackendId($object_id)
 {
     $result = $this->_data->getBackendId($object_id);
     $this->_logger->debug(sprintf('Backend id for object %s is %s in %s.', $object_id, $result, $this->_data->getPath()));
     return $result;
 }