Friday, July 30, 2010

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

Set your message as a variable instead of concating them inside the
functions parameter list:

Example:
$text = 'Thank you for logging in: ';
$flashmsg = $txt . $user;
$this->Session->setFlash($flashmsg, 'growl',
array('type'=>'important'));

or

$flashmsg = 'Thank you for logging in: ' . $user;
$this->Session->setFlash($flashmsg, 'growl',
array('type'=>'important'));

I've ran into troubles before while trying to concat strings into a
single functions parameter and have found it best to get the entire
message into a variable before using it as a parameter.

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: