コード例 #1
0
ファイル: permission_model.php プロジェクト: caina/pando
 public function __construct()
 {
     parent::__construct();
     $this->ci =& get_instance();
     // $this->user = unserialize(get_logged_user());
 }
コード例 #2
0
ファイル: user_model.php プロジェクト: caina/pando
 public function __construct()
 {
     parent::__construct();
     $this->load->database();
     $this->user = unserialize(get_logged_user());
 }
コード例 #3
0
ファイル: snippet_model.php プロジェクト: caina/pando
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "snippet";
 }
コード例 #4
0
ファイル: company_model.php プロジェクト: caina/pando
 public function __construct()
 {
     parent::__construct();
     $this->table_name = "company";
     $this->ci =& get_instance();
 }