Я пытаюсь изучить Codeigniter. Я пытаюсь использовать application / core / MY_Controller в своем приложении CI. MY_Controller.php как: class MY_Controller extends CI_Controller { protected $data = array(); function __construct() { parent::__construct(); } function render_page($view) { //do this to don't repeat in all controllers… $this->load->view('templates/header', $this->data); //menu_data must contain the structure of the menu… //you can […]
Я успешно расширил класс CI_Controller, создав MY_Controller.php, который я разместил в каталоге application / core. core / My_Controller.php выглядит примерно так: class MY_Controller extends CI_Controller { function __construct() { parent::__construct(); } } Затем, когда я создаю обычные контроллеры, они выглядят примерно так: class Home extends MY_Controller { function __construct() { parent::__construct(); } function index() { […]