Skip to content

Instantly share code, notes, and snippets.

@serapheem
Created November 6, 2012 10:30
Show Gist options
  • Save serapheem/4023915 to your computer and use it in GitHub Desktop.
Save serapheem/4023915 to your computer and use it in GitHub Desktop.
Symfony2 - Get Flash message in template
Twig:
{% if app.session.hasFlash('notice') %}
<div class="flash-notice">
{{ app.session.flash('notice') }}
</div>
{% endif %}
PHP:
<?php if ($view['session']->hasFlash('notice')): ?>
<div class="flash-notice">
<?php echo $view['session']->getFlash('notice') ?>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment