仅限管理员区域的CodeIgniter加载助手,语言和库

时间:2016-06-21 12:09:52

标签: php codeigniter

这已被问了几次,我看过教程但我没能做到。我基本上有abc.com/admin然后管理员/控制器。我需要的是为管理区域加载一些语言,帮助程序和库。

    class MY_Controller extends CI_Controller{         

        function __construct(){
          parent::__construct();
          }

      }


    class Admin_Controller extends MY_Controller{
         function __construct(){
          parent::__construct();
          file_put_contents('trial.txt','trial data');                 //JUST TO SEE IF THAT EVEN WORKS and it is not writing the file either
        $this->lang->load('scripts','english');
   }
}

除非我在autoload.php中自动加载,否则所有管理区域都不会加载任何内容。我错过了什么?

0 个答案:

没有答案