弹出消息,如果不是特定用户

时间:2014-03-25 03:04:16

标签: cakephp

function beforeFilter() {
if($this->Session->read('Users.username') == 'budiman' or $this->Session-    >read('Users.username') == 'john' ){
$this->Auth->allow('*');
} else {            
//$this->redirect($this->Auth->redirect());
}
}

这是我的代码。 如果用户不是budiman或john,我想要的是什么 它会弹出一些消息,是否可以完成。?

1 个答案:

答案 0 :(得分:0)

在加载期间弹出? 你不能 - 这段代码必须在显示之前完成执行