我想擴展一個控制器與我自己的類,它擴展了默認的CI_Controller類。除非它不起作用。Codeigniter - 擴展控制器不工作
它說它無法找到我的子類。我的子類位於application/core中,名爲My_Control_Panel。
我的類,它在我的子類擴展:
if (!defined('BASEPATH')) exit('No direct script access allowed');
class Developers extends My_Control_Panel
{
public function __construct()
{
parent::__construct();
$this->load->helper('form');
$this->load->helper('url');
$this->load->database();
$this->checkIfLoggedIn();
$this->checkIfAllowedToViewPage();
}
我的子類:
if (!defined('BASEPATH')) exit('No direct script access allowed');
class My_Control_Panel extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
}
口口聲聲說無法找到我的子類,而它應該工作。
這也適用。謝謝。 :) – DijkeMark 2012-08-15 13:37:04
歡迎:) – zaherg 2012-08-15 15:03:46
是'核心'文件夾這樣的類的正確位置? – Matthew 2012-08-17 08:00:11