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


PHP adminReadBase類代碼示例

本文整理匯總了PHP中adminReadBase的典型用法代碼示例。如果您正苦於以下問題:PHP adminReadBase類的具體用法?PHP adminReadBase怎麽用?PHP adminReadBase使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     include CUR_CONF_PATH . 'lib/UpYun.class.php';
     $this->upyun = new UpYun();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:upyun.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->stateconfig = $this->settings['order_status'];
     $this->trace_stepconfig = $this->settings['trace_step'];
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:Export.php

示例3: __getConfig

 public function __getConfig()
 {
     $total = $this->mRecordConfig->count('');
     if ($total['total'] < 1) {
         $this->errorOutput('REDIRECT TO ' . APP_UNIQUEID . ' record_config');
     }
     parent::__getConfig();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:8,代碼來源:channel.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->stateconfig = $this->settings['order_status'];
     $this->trace_stepconfig = $this->settings['trace_step'];
     $this->mPrmsMethods = array('show' => '查看', 'manage' => '管理');
 }
開發者ID:h3len,項目名稱:Project,代碼行數:8,代碼來源:Order.php

示例5: __getConfig

 public function __getConfig()
 {
     $total = $this->server->count();
     if ($total['total'] < 1) {
         $this->errorOutput('REDIRECT TO ' . APP_UNIQUEID . ' program_record_server');
     }
     parent::__getConfig();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:8,代碼來源:channel.php

示例6: array

 function __construct()
 {
     $this->mPrmsMethods = array('manage' => '管理');
     parent::__construct();
     include_once ROOT_PATH . 'lib/class/publishsys.class.php';
     $this->pub_sys = new publishsys();
     include_once ROOT_PATH . 'lib/class/publishconfig.class.php';
     $this->pub_config = new publishconfig();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:9,代碼來源:mkpublish.php

示例7: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->comment);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:comment.php

示例8: __contruct

 public function __contruct()
 {
     parent::__construct();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:4,代碼來源:core.class.php

示例9: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->messagereceived);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:message_received.php

示例10: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->team);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:team_op.php

示例11: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new template_default_data();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:defaultdata_data.php

示例12: array

 {
     $this->mPrmsMethods = array('manage' => '管理');
     parent::__construct();
     $this->banword = new banwordClass();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:banword.php

示例13: Core

 {
     parent::__construct();
     $this->dao = new Core();
     //$this->paydata = new paydataClass();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:paydata.php

示例14: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->grade);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:grade.php

示例15: __getConfig

 public function __getConfig()
 {
     //獲取mediaserver的裏麵視頻類型的配置
     if ($this->settings['App_mediaserver']) {
         $curl = new curl($this->settings['App_mediaserver']['host'], $this->settings['App_mediaserver']['dir']);
         $curl->setReturnFormat('json');
         $curl->setCurlTimeOut(10);
         //設置curl超時時間10秒
         $curl->initPostData();
         $curl->addRequestData('a', 'settings');
         $m_config = $curl->request('configuare.php');
     }
     if ($m_config && is_array($m_config) && $m_config['base']['video_type']['allow_type']) {
         $video_type = $m_config['base']['video_type']['allow_type'];
     } else {
         $video_type = $this->default_type;
     }
     $video_type_arr = explode(',', $video_type);
     $flash_video_type = '';
     foreach ($video_type_arr as $k => $v) {
         $flash_video_type .= '*' . $v . ';';
     }
     $video_types = str_replace('.', '', $video_type);
     $this->settings['flash_video_type'] = $flash_video_type;
     $this->settings['video_type'] = $video_types;
     //增加第三方對接雲配置輸出
     $this->settings['video_cloud'] = array('open' => $m_config['base']['video_cloud'], 'title' => $m_config['base']['video_cloud_title']);
     parent::__getConfig();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:29,代碼來源:vod.php


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