找不到办法做到这一点,可能是因为有另一种方法可以做到这一点?
我的一些控制器扩展了AdminLayout,其中一些扩展了ModLayout,但我还需要这些页面来扩展LoggedIn控制器。
class Profile extends AdminLayout, LoggedIn {
然而,调查没有办法很好地做到这一点。有解决方法吗?
答案 0 :(得分:25)
假设您使用的是Codeigniter 2,可以将所有扩展控制器类放在同一个文件中来完成。
在 / application / core 中创建一个名为 MY_Controller.php 的文件(别忘了检查 config.php 中的子类前缀在第109行附近)
在这里,您可以添加所有要扩展的控制器类。例如;
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* MY_Controller Class
*
*
* @package Project Name
* @subpackage Controllers
*/
class MY_Controller extends CI_Controller {
public function __construct() {
parent::__construct();
$this->form_validation->set_error_delimiters('<div class="form-error">', '</div>');
}
}
class LoggedIn extends MY_Controller {
public function __construct() {
parent::__construct();
if (is_logged_in() == FALSE) {
$this->session->set_userdata('return_to', uri_string());
$this->session->set_flashdata('message', 'You need to log in.');
redirect('/home');
}
}
}
class AdminLayout extends LoggedIn {
public function __construct() {
parent::__construct();
// do something
}
}
class ModLayout extends LoggedIn {
public function __construct() {
parent::__construct();
// do something
}
}
/* End of file */
/* Location: ./application/core/ */
然后,按照正常情况创建控制器时,只需选择要扩展的基本控制器类。实施例;
class Foo extends AdminLayout {
public function __construct() {
parent::__construct();
if (is_logged_in() == FALSE) {
$this->session->set_userdata('return_to', uri_string());
$this->session->set_flashdata('message', 'You need to log in.');
redirect('/home');
}
}
}
或
class Bar extends ModLayout {
public function __construct() {
parent::__construct();
if (is_logged_in() == FALSE) {
$this->session->set_userdata('return_to', uri_string());
$this->session->set_flashdata('message', 'You need to log in.');
redirect('/home');
}
}
}
答案 1 :(得分:2)