コード例 #1
0
ファイル: area_model.php プロジェクト: duongbaphuc1/newcanho
 function __construct()
 {
     // Call the Model constructor
     parent::__construct();
     $this->_table = "area";
     $this->_primary_key = "id";
 }
コード例 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'kpi';
     $this->ids_name = array('term_id');
     $this->auto_increment = false;
 }
コード例 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'storyboard';
     $this->link_table = 'storyboard_slide';
     $this->link_table2 = 'wordcloud_content';
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'company';
     $this->ids_name = array('entity_id');
     $this->auto_increment = false;
 }
コード例 #5
0
ファイル: test_model.php プロジェクト: duongbaphuc1/newcanho
 function __construct()
 {
     // Call the Model constructor
     parent::__construct();
     $this->_table = "users";
     $this->_primary_key = "id";
     $this->load->helper("phpmailer_helper");
 }
コード例 #6
0
 function __construct()
 {
     // Call the Model constructor
     parent::__construct();
     $this->_table = "contacts";
     $this->_primary_key = "id";
     $this->load->helper('phpmailer');
 }
コード例 #7
0
 function __construct()
 {
     // Call the Model constructor
     parent::__construct();
     $this->_table = "real_estate";
     $this->_primary_key = "id";
     $this->load->helper("upload_helper");
 }
コード例 #8
0
 function __construct()
 {
     // Call the Model constructor
     parent::__construct();
     $this->load->model("Categories_model");
     $this->load->model('District_model');
     $this->load->model('Area_model');
     $this->load->model('Price_model');
     $this->load->model('Configs_model');
     $this->load->helper('cookie');
 }
コード例 #9
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'private_company';
 }
コード例 #10
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'circle';
 }
コード例 #11
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'list_companies';
 }
コード例 #12
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'user';
 }
コード例 #13
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'indicator';
 }
コード例 #14
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'view_card';
 }
コード例 #15
0
 function __construct()
 {
     parent::__construct();
     $this->db = $this->load->database('ifp_db', TRUE);
     // <-- Please Modified This : ifp_db,ifb_db,ifc_db
 }
コード例 #16
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'card_kpi';
 }
コード例 #17
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'dataset';
 }
コード例 #18
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'reporting_periods';
 }
コード例 #19
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'user_circle';
     $this->ids_name = array('card', 'circle');
 }
コード例 #20
0
 function __construct()
 {
     parent::__construct();
 }
コード例 #21
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'sync';
     $this->ids_name = array('type');
 }
コード例 #22
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'card_of_the_day';
 }
コード例 #23
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'user_company';
     $this->ids_name = array('user', 'company');
 }