コード例 #1
0
ファイル: upyun.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     include CUR_CONF_PATH . 'lib/UpYun.class.php';
     $this->upyun = new UpYun();
 }
コード例 #2
0
ファイル: Export.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->stateconfig = $this->settings['order_status'];
     $this->trace_stepconfig = $this->settings['trace_step'];
 }
コード例 #3
0
ファイル: channel.php プロジェクト: h3len/Project
 public function __getConfig()
 {
     $total = $this->mRecordConfig->count('');
     if ($total['total'] < 1) {
         $this->errorOutput('REDIRECT TO ' . APP_UNIQUEID . ' record_config');
     }
     parent::__getConfig();
 }
コード例 #4
0
ファイル: Order.php プロジェクト: h3len/Project
 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
0
ファイル: channel.php プロジェクト: h3len/Project
 public function __getConfig()
 {
     $total = $this->server->count();
     if ($total['total'] < 1) {
         $this->errorOutput('REDIRECT TO ' . APP_UNIQUEID . ' program_record_server');
     }
     parent::__getConfig();
 }
コード例 #6
0
ファイル: mkpublish.php プロジェクト: h3len/Project
 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
0
ファイル: comment.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
     unset($this->comment);
 }
コード例 #8
0
ファイル: core.class.php プロジェクト: h3len/Project
 public function __contruct()
 {
     parent::__construct();
 }
コード例 #9
0
ファイル: message_received.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
     unset($this->messagereceived);
 }
コード例 #10
0
ファイル: team_op.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
     unset($this->team);
 }
コード例 #11
0
ファイル: defaultdata_data.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->obj = new template_default_data();
 }
コード例 #12
0
ファイル: banword.php プロジェクト: h3len/Project
 {
     $this->mPrmsMethods = array('manage' => '管理');
     parent::__construct();
     $this->banword = new banwordClass();
 }
コード例 #13
0
ファイル: paydata.php プロジェクト: h3len/Project
 {
     parent::__construct();
     $this->dao = new Core();
     //$this->paydata = new paydataClass();
 }
コード例 #14
0
ファイル: grade.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
     unset($this->grade);
 }
コード例 #15
0
ファイル: vod.php プロジェクト: h3len/Project
 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();
 }
コード例 #16
0
ファイル: DeliveryTracing.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->delivery_tracing_conf = $this->settings['trace_step'];
 }
コード例 #17
0
ファイル: photoedit.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->photoedit = new photoeditClass();
 }
コード例 #18
0
ファイル: card_css.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
     unset($this->cardcss);
 }
コード例 #19
0
ファイル: publishsys_node.php プロジェクト: h3len/Project
 public function count()
 {
     parent::count($this->get_condition());
 }
コード例 #20
0
ファイル: payconfig.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->payconfig = new payconfigClass();
 }
コード例 #21
0
ファイル: Consignee.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->region = new regionClass();
 }
コード例 #22
0
ファイル: weight.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
     unset($this->weight);
 }
コード例 #23
0
ファイル: member_myField.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
 }
コード例 #24
0
ファイル: customMenu.php プロジェクト: h3len/Project
 {
     parent::__construct();
     $this->menu = new menu();
     $this->get_user_id();
 }
 public function __destruct()
コード例 #25
0
ファイル: DeliveryCategory.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
 }
コード例 #26
0
ファイル: show.php プロジェクト: h3len/Project
 public function __destruct()
 {
     parent::__destruct();
     unset($this->status);
 }