コード例 #1
0
ファイル: anggota.php プロジェクト: ibnoe/kosimpin
 function __construct()
 {
     parent::__construct();
     $this->init("anggota", "id", "nomor_anggota");
     $this->load->model("pinjaman");
     $this->load->model("tabungan");
 }
コード例 #2
0
ファイル: WeChat_model.php プロジェクト: wqzgh/gt_basic
 public function __construct()
 {
     $this->db_tablepre = 't_wechat_';
     // 不设置默认为t_sys_
     $this->table_name = 'config';
     parent::__construct();
 }
 /**
  * Constructs a Question_Type_Model while setting attribute types.
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     //setting attribute types.
     settype($this->id, "integer");
     settype($this->name, "string");
 }
コード例 #4
0
 public function __construct()
 {
     $this->db_tablepre = 'ci_';
     $this->table_name = 'game_rank';
     parent::__construct();
     $this->mode_table_name = $this->table_name;
 }
コード例 #5
0
 public function __construct($table = NULL)
 {
     parent::__construct($table);
     if (!empty($table)) {
         $this->_idx_table = $table;
         /*$this->table      = $this->get_table($this->_idx_table);*/
     }
 }
コード例 #6
0
 public function __construct()
 {
     parent::__construct();
     $this->users_table = "users";
     $this->roles_table = "roles";
     $this->zones_table = "zones";
     $this->areas_table = "areas";
     $this->brands_table = "brands";
     $this->profiles_table = "profiles";
     $this->credit_limit_table = "credit_limit";
 }
コード例 #7
0
 function __construct()
 {
     parent::__construct();
     // Setup allowed tables
     $this->load->config('khaos', true, true);
     $options = $this->config->item('acl', 'khaos');
     $this->_TABLES = $options['tables'];
     $this->_TABLES['groups'] = $this->config->item('backendpro_table_prefix') . "groups";
     $this->_TABLES['resources'] = $this->config->item('backendpro_table_prefix') . "resources";
     // Setup ACO Model
     $this->resource = new Nested_sets_model();
     $this->resource->setControlParams($this->_TABLES['acos']);
     $this->resource->setPrimaryKeyColumn('id');
     // Setup ARO Model
     $this->group = new Nested_sets_model();
     $this->group->setControlParams("n_" . $this->_TABLES['aros']);
     $this->group->setPrimaryKeyColumn('id');
     log_message('debug', 'BackendPro : Access_control_model class loaded');
 }
コード例 #8
0
ファイル: agama_model.php プロジェクト: nmadipati/si-ksc
 public function __construct()
 {
     parent::__construct();
     $this->loadConnection('default');
     $this->logger->write('info', 'model: Agama');
 }
コード例 #9
0
 public function __construct()
 {
     parent::__construct('article_cat');
 }
コード例 #10
0
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_dep_ru_prohibit";
 }
コード例 #11
0
ファイル: Member_model.php プロジェクト: flycorn/ACI
 public function __construct()
 {
     $this->table_name = 'member';
     parent::__construct();
 }
コード例 #12
0
 function __construct()
 {
     parent::__construct('transactions', 'datetime');
 }
コード例 #13
0
 function __construct()
 {
     parent::__construct('movements', 'datetime');
 }
コード例 #14
0
ファイル: Model_session.php プロジェクト: skubbs-chuck/emr
 public function __construct()
 {
     parent::__construct();
 }
コード例 #15
0
ファイル: user.php プロジェクト: ibnoe/kosimpin
 function __construct()
 {
     parent::__construct();
     $this->init("user", "id", "user_name");
 }
コード例 #16
0
 function __construct()
 {
     parent::__construct('bsx', 'code');
 }
コード例 #17
0
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_locarea_info";
 }
コード例 #18
0
 function __construct()
 {
     $this->db_tablepre = 'tb_';
     $this->table_name = 'member_role_priv';
     parent::__construct();
 }
コード例 #19
0
ファイル: Times_model.php プロジェクト: flycorn/ACI
 public function __construct()
 {
     $this->table_name = 'times';
     parent::__construct();
 }
コード例 #20
0
ファイル: tracker_model.php プロジェクト: pompalini/emngo
 /**
  * Tracker Model Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     $this->set_table('tracker');
 }
コード例 #21
0
 function __construct()
 {
     parent::__construct('players', 'player');
 }
コード例 #22
0
 function __construct($tablename = null, $keyfield = 'id', $keyfield2 = 'part')
 {
     parent::__construct($tablename, $keyfield);
     $this->_keyField2 = $keyfield2;
 }
コード例 #23
0
 public function __construct()
 {
     $this->db_tablepre = 'ci_';
     $this->table_name = 'wx_keywords';
     parent::__construct();
 }
コード例 #24
0
ファイル: Module.php プロジェクト: skubbs-chuck/emr
 public function __construct()
 {
     parent::__construct();
     $this->_path = isset($this->name) ? base_url() . DIR_APPS . '/' . DIR_APP . '/modules/' . $this->name . '/' : false;
     $this->_localPath = isset($this->name) ? $this->name . DS : false;
 }
コード例 #25
0
ファイル: structure_model.php プロジェクト: pompalini/emngo
 /**
  * Article Model Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     // Call the Model constructor
     parent::__construct();
 }
コード例 #26
0
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_department_info";
 }
コード例 #27
0
ファイル: Member_model.php プロジェクト: sharpmental/prcs
 public function __construct()
 {
     $this->table_name = 'operator_info';
     parent::__construct();
 }
コード例 #28
0
ファイル: Alarm_mon_model.php プロジェクト: sharpmental/prcs
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_alarm_mon";
 }
コード例 #29
0
ファイル: ads.php プロジェクト: nmadipati/si-ksc
 public function __construct()
 {
     parent::__construct();
     $this->loadConnection('default');
 }
コード例 #30
0
ファイル: Sys_Model.php プロジェクト: robinmin/MyContact
	/**
	 * __construct : ctor
	 * 
	 * @access public
	 * @return void
	 */
	public function __construct() {
		parent::__construct();
		$this->load->database();
	}