Example #1
0
 function __construct()
 {
     parent::__construct();
     if (!defined('WITH_LOGIN') || WITH_LOGIN) {
         $this->verifyToken();
     }
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     if (!$this->verify_custom()) {
         $this->errorOutput(UNKNOWN_HG_CUSTOMER);
     }
 }
Example #3
0
 function __construct()
 {
     parent::__construct();
     global $gDBconfig;
     $this->dbconfig = $gDBconfig;
     if (defined('DB_PREFIX')) {
         $this->dbconfig['dbprefix'] = DB_PREFIX;
     }
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->user = $this->verifyToken();
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     $this->curl = new curl($this->settings['App_livmedia']['host'], $this->settings['App_livmedia']['dir']);
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
 }
Example #7
0
 function __construct()
 {
     parent::__construct();
     //$this->verifyToken();
 }
Example #8
0
 public function __construct()
 {
     parent::__construct();
     $this->buffer = new buffercore();
 }
Example #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();
     }
 }
Example #10
0
 function __construct()
 {
     parent::__construct();
     //$this->input['main_module'] = $this->input['menu_pos'];
     $this->verifyToken();
 }
Example #11
0
 public function __construct()
 {
     parent::__construct();
     $this->share = new share();
     $this->material = new material();
 }