Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2015-07-05 Thread DJ Far
SessionHelper is deprecated; use $this-request-session()-read('Auth.User.id'); On Monday, December 8, 2014 at 2:29:35 AM UTC-8, euromark wrote: if ($this-Sessioncheck('Auth.User.id') {} Am Montag, 8. Dezember 2014 02:32:28 UTC+1 schrieb frocco: I want to check in my default layout.

Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-08 Thread euromark
if ($this-Sessioncheck('Auth.User.id') {} Am Montag, 8. Dezember 2014 02:32:28 UTC+1 schrieb frocco: I want to check in my default layout. Thanks -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because

Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-08 Thread frocco
Thank you, What is the syntax to check if they have a role called admin? Field name is role. On Monday, December 8, 2014 5:29:35 AM UTC-5, euromark wrote: if ($this-Sessioncheck('Auth.User.id') {} Am Montag, 8. Dezember 2014 02:32:28 UTC+1 schrieb frocco: I want to check in my default

Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-08 Thread euromark
Same thing. Just use this wrapper. And use debug kit to see how the session data looks like. But you should be able to use the knowledge you gained in my previous answer to translate it to the role question. The answer is right in front of you. mark Am Montag, 8. Dezember 2014 12:13:53 UTC+1

Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-08 Thread frocco
Thank you for your help. This seems to be working. if($this-Session-check('Auth.User.role') == 'admin') On Monday, December 8, 2014 9:09:15 AM UTC-5, euromark wrote: Same thing. Just use this wrapper. And use debug kit to see how the session data looks like. But you should be able to use the

Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-08 Thread frocco
I have another question. I used bake with the prefix admin and now need to protect each controller to allow admin only. Is this done in the beforeFilter? What is the correct syntax? Thanks -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP

Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-08 Thread euromark
Yes, you can simply use Auth-allow(listofactionnames) as documented to make the non admin actions public. either in each controller, or globally in your app controller Am Montag, 8. Dezember 2014 19:28:17 UTC+1 schrieb frocco: I have another question. I used bake with the prefix admin and

Re: In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-08 Thread frocco
Thank you On Monday, December 8, 2014 4:51:56 PM UTC-5, euromark wrote: Yes, you can simply use Auth-allow(listofactionnames) as documented to make the non admin actions public. either in each controller, or globally in your app controller Am Montag, 8. Dezember 2014 19:28:17 UTC+1

In CakePHP 3, how do I check if user is logged in and has admin rights?

2014-12-07 Thread frocco
I want to check in my default layout. Thanks -- 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