Skip to content

Instantly share code, notes, and snippets.

@serapheem
Created July 21, 2013 04:53
Show Gist options
  • Select an option

  • Save serapheem/6047527 to your computer and use it in GitHub Desktop.

Select an option

Save serapheem/6047527 to your computer and use it in GitHub Desktop.
Symfony2 - Getting 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