fetchComplete() public method

Retrieves a complete message.
public fetchComplete ( string $folder, array $uid ) : array
$folder string The folder to fetch the messages from.
$uid array The message UID.
return array The message encapsuled as an array that contains a Horde_Mime_Headers and a Horde_Mime_Part object.
コード例 #1
0
ファイル: Base.php プロジェクト: jubinpatel/horde
 /**
  * Retrieves a complete message.
  *
  * @param string $folder The folder to fetch the messages from.
  * @param array  $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($folder, $uid)
 {
     return $this->_driver->fetchComplete($folder, $uid);
 }
コード例 #2
0
ファイル: Base.php プロジェクト: platolin/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)
 {
     return $this->_driver->fetchComplete($this->_folder->getPath(), $uid);
 }