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

2010-07-30 Thread Melody Nelson
thanks for your messages

I've tried but $user is always empty in my login message

function login(){
$txtmsg = "Bienvenue ";
$user = $this->Session->read('Auth.User.first_name'); // $user is
empty
//$user = $this->Auth->user('first_name'); // $user is empty
$flashmsg = $txtmsg.$user;
$this->Session->setFlash($flashmsg, 'growl',
array('type'=>'important'));
}

if I debug $_SESSION, I see the infos but the array [Message] is
before the array [Auth], could it be the source of my problem ?

Array
(
[Config] => Array
(
[userAgent] => e3e6252595657764bf058df0bc2e9178
[time] => 1280533844
[timeout] => 100
)

[Message] => Array
(
[flash] => Array
(
[message] => Bienvenue
[element] => growl
[params] => Array
(
[type] => important
)

)

)

[Auth] => Array
(
[User] => Array
(
[id] => 2
[username] => melodyn
[first_name] => Melody
[last_name] => Nelson
[email] =>
[disabled] => 0
[created] => 2010-07-11 23:06:49
[updated] => 2010-07-29 17:30:41
)

)

)

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


add logged user infos in the setFlash message after login

2010-07-29 Thread Melody Nelson
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+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en