예제 #1
0
 /**
  * 构造函数
  *
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->tagModel = F::load_model('tag');
     $this->emailConfig = F::load_config('email.php');
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->load->database();
     $this->table = 'business';
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->load->database();
     $this->table = 'peasant';
 }
예제 #4
0
 public function __construct()
 {
     $this->tableName = 'users';
     $this->keyField = 'id';
     parent::__construct();
 }
예제 #5
0
 public function __construct()
 {
     parent::__construct();
     $this->load->database();
     $this->table = 'lawyer';
 }
예제 #6
0
 /**
  * 构造函数
  *
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     //$this->userModel = F::load_model('user');
 }
예제 #7
0
 public function __construct()
 {
     parent::__construct();
     //$this->set_table('test');
 }
예제 #8
0
 public function __construct()
 {
     parent::__construct();
     $this->tableName = 'contacts';
     $this->keyField = 'id';
 }