示例#1
0
 function __construct()
 {
     parent::__construct();
     if (!defined('WITH_LOGIN') || WITH_LOGIN) {
         $this->verifyToken();
     }
 }
示例#2
0
 public function __construct()
 {
     parent::__construct();
     if (!$this->verify_custom()) {
         $this->errorOutput(UNKNOWN_HG_CUSTOMER);
     }
 }
示例#3
0
 function __construct()
 {
     parent::__construct();
     global $gDBconfig;
     $this->dbconfig = $gDBconfig;
     if (defined('DB_PREFIX')) {
         $this->dbconfig['dbprefix'] = DB_PREFIX;
     }
 }
示例#4
0
 public function __construct()
 {
     parent::__construct();
     $this->user = $this->verifyToken();
 }
示例#5
0
 public function __construct()
 {
     parent::__construct();
     $this->curl = new curl($this->settings['App_livmedia']['host'], $this->settings['App_livmedia']['dir']);
 }
示例#6
0
 public function __construct()
 {
     parent::__construct();
 }
示例#7
0
文件: apps.php 项目: h3len/Project
 function __construct()
 {
     parent::__construct();
     //$this->verifyToken();
 }
示例#8
0
 public function __construct()
 {
     parent::__construct();
     $this->buffer = new buffercore();
 }
示例#9
0
 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
 public function __construct()
 {
     parent::__construct();
     $this->share = new share();
     $this->material = new material();
 }