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


PHP ElggFile::__construct方法代碼示例

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


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

示例1: __construct

 public function __construct($guid = null)
 {
     if ($guid && !is_object($guid)) {
         $guid = get_entity_as_row($guid);
     }
     parent::__construct($guid);
 }
開發者ID:nlybe,項目名稱:elgg-sharemaps,代碼行數:7,代碼來源:SharemapsPluginMap.php

示例2: __construct

 /**
  * Loads an ElggPodcast entity.
  *
  * @param int $guid GUID of the ElggPodcast object
  */
 public function __construct($guid = null)
 {
     parent::__construct($guid);
     if (is_numeric($guid)) {
         // $guid is a GUID so load
         if (!$this->load($guid)) {
             throw new IOException(elgg_echo('IOException:FailedToLoadGUID', array(get_class(), $guid)));
         }
     }
 }
開發者ID:amcfarlane1251,項目名稱:ongarde,代碼行數:15,代碼來源:ElggPodcast.php

示例3: __construct

 /**
  * loads or create new IzapObject
  * @global <type> $CONFIG
  * @param  $guid
  */
 public function __construct($guid = null)
 {
     global $CONFIG;
     parent::__construct($guid);
     $this->_post = $CONFIG->post_byizap;
     if (is_numeric($guid) && $guid > 0) {
         $this->_guid = $guid;
     } else {
         $this->_guid = $this->_post->attributes['guid'];
     }
 }
開發者ID:socialweb,項目名稱:PiGo,代碼行數:16,代碼來源:IzapObject.php

示例4: __construct

 public function __construct($guid = null)
 {
     parent::__construct($guid);
     // set some initial values so that old videos can work
     if (empty($this->videosrc)) {
         $this->videosrc = $this->IZAPSETTINGS->filesPath . 'file/' . $this->guid . '/' . friendly_title($this->title) . '.flv';
     }
     // sets the defalut value for the old videos, if not set yet
     if (empty($this->converted)) {
         $this->converted = 'yes';
     }
 }
開發者ID:rimpy,項目名稱:izap_videos,代碼行數:12,代碼來源:izap_videos.php

示例5: __construct

 public function __construct($guid = null)
 {
     parent::__construct($guid);
 }
開發者ID:eokyere,項目名稱:elgg,代碼行數:4,代碼來源:start.php

示例6: __construct

 public function __construct($row = null)
 {
     parent::__construct($row);
 }
開發者ID:iionly,項目名稱:izap_videos,代碼行數:4,代碼來源:izap_videos.php

示例7: __construct

 /**
  * 
  * @param integer  $guid
  * 
  * @version 5.0
  */
 public function __construct($guid = NULL)
 {
     parent::__construct($guid);
     // set some initial values so that old videos can work
 }
開發者ID:justangel,項目名稱:izap-videos,代碼行數:11,代碼來源:IzapVideo.php


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