Example #1
0
 /**
  * Constructor
  *
  * Carga la clase padre MY_Admin_Model
  *
  * @return	void
  */
 function __construct()
 {
     parent::__construct();
 }
Example #2
0
 function __construct()
 {
     parent::__construct();
     $this->_table_name = 'users';
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->_table_name = $this->db->dbprefix . 'admin';
     $this->user_table_name = $this->db->dbprefix . 'users';
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->_user_table = $this->db->dbprefix . $this->_user_table;
     $this->_image_table = $this->db->dbprefix . $this->_image_table;
 }