コード例 #1
0
ファイル: node_frm.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     if (!defined('WITH_LOGIN') || WITH_LOGIN) {
         $this->verifyToken();
     }
 }
コード例 #2
0
ファイル: getPrivateKey.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     if (!$this->verify_custom()) {
         $this->errorOutput(UNKNOWN_HG_CUSTOMER);
     }
 }
コード例 #3
0
ファイル: configuare_frm.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     global $gDBconfig;
     $this->dbconfig = $gDBconfig;
     if (defined('DB_PREFIX')) {
         $this->dbconfig['dbprefix'] = DB_PREFIX;
     }
 }
コード例 #4
0
ファイル: synmedia.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->user = $this->verifyToken();
 }
コード例 #5
0
ファイル: special_get_videos.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->curl = new curl($this->settings['App_livmedia']['host'], $this->settings['App_livmedia']['dir']);
 }
コード例 #6
0
ファイル: set_dynamic_token.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
 }
コード例 #7
0
ファイル: apps.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     //$this->verifyToken();
 }
コード例 #8
0
ファイル: ctrip_train.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->buffer = new buffercore();
 }
コード例 #9
0
ファイル: base_frm.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     if (defined('INITED_APP') && !INITED_APP) {
         $this->errorOutput('NOT_INITED');
     } elseif (!defined('INITED_APP')) {
         $this->errorOutput('NOT_INITED');
     }
     if (!defined('WITH_LOGIN') || WITH_LOGIN) {
         $this->initUserInfo();
     }
 }
コード例 #10
0
ファイル: modules.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     //$this->input['main_module'] = $this->input['menu_pos'];
     $this->verifyToken();
 }
コード例 #11
0
ファイル: get_contribute.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->share = new share();
     $this->material = new material();
 }