Friday, July 30, 2010

Re: add logged user infos in the setFlash message after login

Also, instead of grabbing from the session variable directly you
should use one of the cake specific functions...

$user = $_SESSION['Auth']['User']['first_name'];

should be:

$this->Session->read('Auth.User.first_name');

or (I prefer this way as someone can't mess with this data like they
can the session)

$this->Auth->user('first_name');

On Jul 28, 5:22 pm, Melody Nelson <melodynelso...@gmail.com> wrote:
> hi (and sorry for my english),
>
> I'm using cake 1.3
>
> I don't find how I can add infos of the logged user in the setFlash
> message after the login
>
> I found how to do it in views but I want to do it in the controller to
> use it a growl message
>
> function login() {
>         $txt = "bla bla bla ";
>         //$user = $this->Session->read('Auth.User.first_name');
>         //$user = $this->Auth->user('first_name');
>         $user = $_SESSION['Auth']['User']['first_name'];
>         $this->Session->setFlash($txt.$user, 'growl',
> array('type'=>'important'));
>
> }
>
> thanks for your help

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

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 For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: