我是CakePHP的新手,已经阅读了蛋糕网站上的所有教程。我正在使用蛋糕2.1构建一个小样本应用程序,并遇到了问题。基本上,我希望管理员用户在登录时重定向到与普通用户重定向到的页面不同的页面。我确信有一种简单的方法可以做到这一点,但我很挣扎!
我启用了管理路由,并且正在使用auth组件(以及ACL组件,尽管这不会影响我的问题)。我有2个登录管理员 - admin_login()和普通用户登录 - 登录() - 正常的非管理员登录工作正常。
在我的AppController.php中我有这个:
class AppController extends Controller {
public $components = array(
'Acl',
'Auth' => array(
'authorize' => array(
'Actions' => array('actionPath' => 'controllers')
)
),
'Session'
);
public $helpers = array('Html', 'Form', 'Session');
public function beforeFilter() {
//Configure AuthComponent
$this->Auth->allow('display'); // Allows access to the homepage of the app
$this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
$this->Auth->logoutRedirect = array('controller' => 'users', 'action' => 'login');
$this->Auth->loginRedirect = array('controller' => 'posts', 'action' => 'add');
}
}
因此你可以看到默认是用户在登录时重定向到posts控制器的add()函数,这很正常。但是,如何为admin_login()函数设置不同的登录重定向?
我在这里看过很多帖子,但大多数都是旧版蛋糕而不是蛋糕2。
如果有帮助,这是UsersController.php中的admin_login函数
public function beforeFilter() {
parent::beforeFilter();
$this->Auth->allow('logout');
}
public function admin_login() {
if ($this->request->is('post')) {
if ($this->Auth->login()) {
if ($this->Session->read('Auth.User')) {
$this->Session->setFlash('You are logged in!');
//$this->redirect($this->Auth->redirect());
// This doesnt work! Grrrrrr
//$this->redirect(array('controller'=>'pages', 'action'=>'admin_index'));
// This nearly works...
if($this->Auth->user())$this->redirect(array('controller' => 'pages', 'action' => 'admin_index'));
}
}
else {
$this->Session->setFlash('Your username or password was incorrect.');
}
}
有人能指出我正确的方向吗?
答案 0 :(得分:2)
如果你有角色 - >数据库中的“admin,user”,放入AppController - beforeFilter():
if($this->Auth->user('role') == 'admin'){
$this->Auth->loginRedirect = array('controller' => 'controller1', 'action' => 'action1');
}else{
$this->Auth->loginRedirect = array('controller' => 'controller2', 'action' => 'action2');
}
如果你想知道你的$ this-> Auth-> user()中的内容,只需输入:
debug($this->Auth->user());
答案 1 :(得分:0)
也许这有效:
if($this->request->params['admin']) {
$this->Auth->loginRedirect = array('controller' => 'pages', 'action' => 'index', 'admin' => true);
}
else {
$this->Auth->loginRedirect = array('controller' => 'posts', 'action' => 'add');
}
使用这些行替换beforeFilter()中的loginRedirect设置