当前位置: 首页>>代码示例>>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;未经允许,请勿转载。