function MY_Controller()
 {
     parent::CI_Controller();
 }
示例#2
0
文件: site.php 项目: agundran/addige
 function _construct()
 {
     parent::CI_Controller();
     $this->is_logged_in();
 }
示例#3
0
文件: Index.php 项目: projukti/dumkal
 function Index()
 {
     //if i remove this parent::__construct(); the error is gone
     parent::CI_Controller();
     $this->load->view('index');
 }