Horde_Kolab_Storage_Data::fetchComplete PHP Method

fetchComplete() public method

Retrieves the complete message for the given UID.
public fetchComplete ( string $uid ) : array
$uid string The message UID.
return array The message encapsuled as an array that contains a Horde_Mime_Headers and a Horde_Mime_Part object.
    public function fetchComplete($uid);

Usage Example

Example #1
0
File: Log.php Project: horde/horde
 /**
  * Retrieves the complete message for the given UID.
  *
  * @param string $uid The message UID.
  *
  * @return array The message encapsuled as an array that contains a
  *               Horde_Mime_Headers and a Horde_Mime_Part object.
  */
 public function fetchComplete($uid)
 {
     $this->_logger->debug(sprintf('Fetching complete message id %s in %s.', $uid, $this->_data->getPath()));
     return $this->_data->fetchComplete($uid);
 }