示例#1
0
 public function __construct()
 {
     parent::__construct();
     $this->_User = new User();
     $this->_Image = new Image();
     $this->_id = null;
     $this->_ReCaptcha = new \ReCaptcha\ReCaptcha(RECAPTCHA_GOOGLE_SECRET);
 }
示例#2
0
 public function __construct()
 {
     # set table name
     parent::__construct('users');
     # get the database and mysqli instance since this is the model
     $oDatabase = Singleton::getInstance('Database');
     $this->mysqli = $oDatabase->connect();
 }
示例#3
0
 public function __construct()
 {
     # set table name
     parent::__construct('files');
     # get the database and mysqli instance since this is the model
     $oDatabase = Singleton::getInstance('Database');
     $this->mysqli = $oDatabase->connect();
     $oUser = Singleton::getInstance('User');
     $iUserid = $oUser->getUserId();
     $this->userid = $iUserid;
 }
示例#4
0
 public function __construct()
 {
     parent::__construct();
     $this->ProminLayer = new ProminLayer();
     $this->CurrenciesLayer = new CurrenciesLayer();
     $this->PersonalCashAccount = new PersonalCashAccount();
     $this->CurrencyHelper = new CurrencyHelper();
     $this->PID = new PID();
     $this->CurexOperations = new CurexOperations();
     $this->Form = new MainListForm();
     $this->Form->set_entity($this->CurexOperations);
 }
示例#5
0
 public function __construct()
 {
     parent::__construct();
 }
示例#6
0
 public function __construct()
 {
     parent::__construct();
     $this->_User = new User();
 }
示例#7
0
 public function __construct()
 {
     parent::__construct();
     $this->check_email_code();
 }
示例#8
0
 public function __construct()
 {
     parent::__construct();
     $this->is_ajax = true;
     $this->_autocomplete = new Autocomplete($this->get_query_string());
 }
示例#9
0
 public function __construct()
 {
     parent::__construct();
     $this->is_ajax = true;
     $this->_legalBranchList = new LegalBranchList();
 }
示例#10
0
 public function __construct()
 {
     parent::__construct();
     $this->_Image = new Image();
 }