Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using cakePHP v1.26. In the default.ctp file, I got a single of this code in it:

$session->flash();

I came a corss a web site in which the author suggested using this instead:

if($session->check('Message.flash')){
$session->flash();
}

I do not understand what this line of code is doing:

if($session->check('Message.flash')){...}

what is "Message.flash" in this case? Is "Message.flash" a custom variable or
a built-in varibale which has been predefined in cakePHP?

share|improve this question

2 Answers

up vote 5 down vote accepted

Message.flash is the session variable name. It will be defined by cakephp, when you use $this->Session->setFlash('Your message'); from your controller.

if($session->check('Message.flash')){...} checks, if session Message.flash, which contains the flash message, exists.

share|improve this answer
What is the standard usage of Message.flash? – paullb Jun 21 '10 at 1:52
CakePHP stores your flash message in it. – Ragnis Jun 21 '10 at 12:22

Note also that contrary to the current manual description, $session->flash() does not echo the result, it just returns it, so you will need to have

echo $session->flash();

in your view.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.