app_controller
1 <?php
2 class AppController extends Controller {
3 var $components = array('Acl', 'Auth', 'Session', 'Cookie');
4 var $helpers = array('Html', 'Form', 'Session');
5 function beforeFilter(){
6 //Configure AuthComponent
7 $this->Auth->actionPath = 'controllers/';
8 $this->Auth->authorize = 'actions';
9 $this->Auth->loginAction = array('controller'=>'users', 'action'=>'login');
10 $this->Auth->logoutRedirect = array('controller'=>'users', 'action'=>'logout');
11 $this->Auth->loginRedirect = array('controller'=>'posts', 'action'=>'add');
12 $this->Auth->allowedActions = array('display');
13 }
14 }
15 ?>
login action
6
7 function login(){
8 if($this->Session->read('Auth.User')){
9 $this->Session->setFlash('You are logged in!');
10 $this->redirect('/', null, false);
11
12 }
13 debug($this->Auth, true);
14 }
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php
No comments:
Post a Comment