He means that he wants his AppController actions Auth::allow()ed globally.
I've never run into this personally; don't know if it's a bug. Are
these *actions* or just global functions that your controllers call
internally? The latter I've done many times. There's no need to allow
them as they're not actions that Dispatcher is involved with.
It can be an array or multiple strings, btw.
On Thu, Nov 22, 2012 at 11:09 AM, Jeremy Burns : Class Outfit
<jeremyburns@classoutfit.com> wrote:
> 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 <metz80@gmail.com> 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 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.
>
>
>
>
> --
> 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.
>
>
--
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.
Thursday, November 22, 2012
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment