コード例 #1
0
ファイル: operaciones_model.php プロジェクト: AlgunOtro/yana
 /**
  * Constructor
  *
  * Carga la clase padre MY_Admin_Model
  *
  * @return	void
  */
 function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: user_model.php プロジェクト: lwl1989/paintmore
 function __construct()
 {
     parent::__construct();
     $this->_table_name = 'users';
 }
コード例 #3
0
ファイル: Admin_model.php プロジェクト: lwl1989/paintmore
 public function __construct()
 {
     parent::__construct();
     $this->_table_name = $this->db->dbprefix . 'admin';
     $this->user_table_name = $this->db->dbprefix . 'users';
 }
コード例 #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;
 }