This happens in CakePHP 2.3.
If you define a beforeFilter() method in any of your controllers and call
public function beforeFilter(){ parent::beforeFilter(); .... //Other controller code here }
CakePHP calls your controller beforeFilter() which already contains a call to parent::beforeFilter() and then calls the AppController's beforeFilter() again.
Most times my controller contains component settings that are defined in the AppController beforeFilter() method. It is important that these settings be defined before my controller methods are called. This can only be achieved by ensuring the parent::beforeFilter() call is made in my controller's beforeFilter() method.
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP
---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
No comments:
Post a Comment