コード例 #1
0
ファイル: Series.php プロジェクト: pdkhuong/VideoFW
 function __construct()
 {
     parent::__construct();
     $this->load->model('Video_model', NULL, TRUE);
     $this->load->model('Series_model', NULL, TRUE);
     $this->Video_model = Video_model::getInstance();
     $this->Series_model = Series_model::getInstance();
     $this->_config = $this->config->config;
 }
コード例 #2
0
ファイル: Admin_video.php プロジェクト: pdkhuong/VideoFW
 function __construct()
 {
     parent::__construct(TRUE);
     $this->load->model('Video_model', NULL, TRUE);
     $this->load->model('Series_model', NULL, TRUE);
     $this->Video_model = Video_model::getInstance();
     $this->Series_model = Series_model::getInstance();
     $this->_config = $this->config->config;
     set_userdata('active_menu', strtolower(get_class($this)));
 }