本文整理匯總了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();
}
示例2: __construct
public function __construct()
{
parent::__construct();
$this->obj = new Core();
$this->stateconfig = $this->settings['order_status'];
$this->trace_stepconfig = $this->settings['trace_step'];
}
示例3: __getConfig
public function __getConfig()
{
$total = $this->mRecordConfig->count('');
if ($total['total'] < 1) {
$this->errorOutput('REDIRECT TO ' . APP_UNIQUEID . ' record_config');
}
parent::__getConfig();
}
示例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' => '管理');
}
示例5: __getConfig
public function __getConfig()
{
$total = $this->server->count();
if ($total['total'] < 1) {
$this->errorOutput('REDIRECT TO ' . APP_UNIQUEID . ' program_record_server');
}
parent::__getConfig();
}
示例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();
}
示例7: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->comment);
}
示例8: __contruct
public function __contruct()
{
parent::__construct();
}
示例9: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->messagereceived);
}
示例10: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->team);
}
示例11: __construct
public function __construct()
{
parent::__construct();
$this->obj = new template_default_data();
}
示例12: array
{
$this->mPrmsMethods = array('manage' => '管理');
parent::__construct();
$this->banword = new banwordClass();
}
示例13: Core
{
parent::__construct();
$this->dao = new Core();
//$this->paydata = new paydataClass();
}
示例14: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->grade);
}
示例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();
}