I hope I haven't misunderstood what you are trying to do... If they are shared functions just put and allow them in app controller and call them from any other controller like so: $this->myFunctionName().
On 22 Nov 2012, at 16:04, MetZ <[email protected]> wrote: > 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 [email protected]. > To unsubscribe from this group, send email to > [email protected]. > Visit this group at http://groups.google.com/group/cake-php?hl=en. > > -- 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 [email protected]. To unsubscribe from this group, send email to [email protected]. Visit this group at http://groups.google.com/group/cake-php?hl=en.
