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');
 }