Exemplo n.º 1
0
 function __construct()
 {
     parent::__construct();
     $this->init("anggota", "id", "nomor_anggota");
     $this->load->model("pinjaman");
     $this->load->model("tabungan");
 }
Exemplo n.º 2
0
 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");
 }
Exemplo n.º 4
0
 public function __construct()
 {
     $this->db_tablepre = 'ci_';
     $this->table_name = 'game_rank';
     parent::__construct();
     $this->mode_table_name = $this->table_name;
 }
Exemplo n.º 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);*/
     }
 }
 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";
 }
Exemplo n.º 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');
 }
Exemplo n.º 8
0
 public function __construct()
 {
     parent::__construct();
     $this->loadConnection('default');
     $this->logger->write('info', 'model: Agama');
 }
Exemplo n.º 9
0
 public function __construct()
 {
     parent::__construct('article_cat');
 }
Exemplo n.º 10
0
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_dep_ru_prohibit";
 }
Exemplo n.º 11
0
 public function __construct()
 {
     $this->table_name = 'member';
     parent::__construct();
 }
Exemplo n.º 12
0
 function __construct()
 {
     parent::__construct('transactions', 'datetime');
 }
Exemplo n.º 13
0
 function __construct()
 {
     parent::__construct('movements', 'datetime');
 }
Exemplo n.º 14
0
 public function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 15
0
 function __construct()
 {
     parent::__construct();
     $this->init("user", "id", "user_name");
 }
Exemplo n.º 16
0
 function __construct()
 {
     parent::__construct('bsx', 'code');
 }
Exemplo n.º 17
0
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_locarea_info";
 }
Exemplo n.º 18
0
 function __construct()
 {
     $this->db_tablepre = 'tb_';
     $this->table_name = 'member_role_priv';
     parent::__construct();
 }
Exemplo n.º 19
0
 public function __construct()
 {
     $this->table_name = 'times';
     parent::__construct();
 }
Exemplo n.º 20
0
 /**
  * Tracker Model Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     $this->set_table('tracker');
 }
Exemplo n.º 21
0
 function __construct()
 {
     parent::__construct('players', 'player');
 }
Exemplo n.º 22
0
 function __construct($tablename = null, $keyfield = 'id', $keyfield2 = 'part')
 {
     parent::__construct($tablename, $keyfield);
     $this->_keyField2 = $keyfield2;
 }
Exemplo n.º 23
0
 public function __construct()
 {
     $this->db_tablepre = 'ci_';
     $this->table_name = 'wx_keywords';
     parent::__construct();
 }
Exemplo n.º 24
0
 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;
 }
Exemplo n.º 25
0
 /**
  * Article Model Constructor
  *
  * @access	public
  */
 public function __construct()
 {
     // Call the Model constructor
     parent::__construct();
 }
Exemplo n.º 26
0
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_department_info";
 }
Exemplo n.º 27
0
 public function __construct()
 {
     $this->table_name = 'operator_info';
     parent::__construct();
 }
Exemplo n.º 28
0
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "tb_alarm_mon";
 }
Exemplo n.º 29
0
 public function __construct()
 {
     parent::__construct();
     $this->loadConnection('default');
 }
Exemplo n.º 30
0
	/**
	 * __construct : ctor
	 * 
	 * @access public
	 * @return void
	 */
	public function __construct() {
		parent::__construct();
		$this->load->database();
	}