i want to add support for flash messages on our pages. I implemented this by following the documentation found here:

http://symfony.com/doc/current/book/controller.html#index-13

i added the following snipplet to my base layout. (i also tried to add it to a specific action template).

{% if app.session.hasFlash('notice') %} 
    <div id="flashmessage" class="flash-notice"> 
       {{ app.session.flash('notice') }} 
   </div> 
{% endif %} 

After adding the following error is thrown

Twig_Error_Runtime: Item "hasFlash" for "" does not exist in "MyBundle::layout.html.twig" at line 66

Is there anything else i need to do ? Thanks, Stephan

link|improve this question
what does var_dump($this->get('session')); output in your controller action? – Jaitsu Nov 23 '11 at 13:38
feedback

3 Answers

Mmm check in your config file that you have auto-started the session:

session:
    default_locale: %locale%
    auto_start:     true

Because the error seems to be that Twig doesn't find the session class, not something about the hasFlash function. In fact I have almost exactly the same code in my layout.

link|improve this answer
feedback

I just figure out that flash messages are not working if intercept_redirects is true in debug mode.

link|improve this answer
feedback

Did you set the flash message somewhere in your action?

$this->get('session')->setFlash('notice', 'Your changes were saved!');

Remember that flash messages will be stored on the user's session for exactly one additional request.

link|improve this answer
if you read the question properly, app.session does not exist in the twig template, its nothing to do with setting it – Jaitsu Dec 1 '11 at 13:38
feedback

Your Answer

 
or
required, but never shown

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