Horde_Kolab_Storage_Driver::fetchBodypart PHP Method

fetchBodypart() public method

Retrieves a bodypart for the given message ID and mime part ID.
public fetchBodypart ( string $folder, array $uid, array $id ) : resource | string
$folder string The folder to fetch the messages from.
$uid array The message UID.
$id array The mime part ID.
return resource | string The body part, as a stream resource or string.
    public function fetchBodypart($folder, $uid, $id);

Usage Example

Example #1
0
 /**
  * Retrieves a bodypart for the given message ID and mime part ID.
  *
  * @param string $folder The folder to fetch the messages from.
  * @param array  $uid    The message UID.
  * @param array  $id     The mime part ID.
  *
  * @return resource  The body part, as a stream resource.
  */
 public function fetchBodypart($folder, $uid, $id)
 {
     return $this->_driver->fetchBodypart($folder, $uid, $id);
 }
All Usage Examples Of Horde_Kolab_Storage_Driver::fetchBodypart