Thursday, November 22, 2012

Auth allow for shared functions in Appcontroller

Hi.

Anyone know how I can auth allow shared functions in appcontroller? 

Appcontroller:
public function beforeFilter() {
$this->Auth->allow('SharedFunction');

OtherController.php
public function beforeFilter() {
parent::beforeFilter();
$this->Auth->allow('ControllerSpesificFunction', 'ControllerSpesificFunction2');

If I do it like above, it kills my app, and to get the sharedfunction(s) access in all controllers, I need to manually put them in all controllers.

Anyone know how I can do it? 

Have tried with array() and so on. same result.

Thanks!
-Tom

--
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 post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
 
 

No comments: