當前位置: 首頁>>代碼示例>>PHP>>正文


PHP rcmail::get_storage方法代碼示例

本文整理匯總了PHP中rcmail::get_storage方法的典型用法代碼示例。如果您正苦於以下問題:PHP rcmail::get_storage方法的具體用法?PHP rcmail::get_storage怎麽用?PHP rcmail::get_storage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在rcmail的用法示例。


在下文中一共展示了rcmail::get_storage方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: list

 /**
  * __construct
  *
  * Provide a uid, and parse message structure.
  *
  * @param string $uid The message UID.
  *
  * @see self::$app, self::$storage, self::$opt, self::$parts
  */
 function __construct($uid)
 {
     $this->uid = $uid;
     $this->app = rcmail::get_instance();
     $this->storage = $this->app->get_storage();
     $this->storage->set_options(array('all_headers' => true));
     $this->headers = $this->storage->get_message($uid);
     if (!$this->headers) {
         return;
     }
     $this->mime = new rcube_mime($this->headers->charset);
     $this->subject = $this->mime->decode_mime_string($this->headers->subject);
     list(, $this->sender) = each($this->mime->decode_address_list($this->headers->from, 1));
     $this->set_safe(intval($_GET['_safe']) || $_SESSION['safe_messages'][$uid]);
     $this->opt = array('safe' => $this->is_safe, 'prefer_html' => $this->app->config->get('prefer_html'), 'get_url' => rcmail_url('get', array('_mbox' => $this->storage->get_folder(), '_uid' => $uid)));
     if (!empty($this->headers->structure)) {
         $this->get_mime_numbers($this->headers->structure);
         $this->parse_structure($this->headers->structure);
     } else {
         $this->body = $this->storage->get_body($uid);
     }
     // notify plugins and let them analyze this structured message object
     $this->app->plugins->exec_hook('message_load', array('object' => $this));
 }
開發者ID:CDN-Sparks,項目名稱:owncloud,代碼行數:33,代碼來源:rcube_message.php


注:本文中的rcmail::get_storage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。