kenjis / codeigniter-ss-twig

A Simple and Secure Twig integration for CodeIgniter 3.x and 4.x
MIT License
168 stars 46 forks source link

Session flashdata #47

Closed florent6001 closed 3 years ago

florent6001 commented 5 years ago

How can i do this, with this twig template engine please ?

  <?php if($this->session->flashdata('category_created')): ?>
    <?php echo '<p class="alert alert-success">'.$this->session->flashdata('category_created').'</p>'; ?>
  <?php endif; ?>
shayhurley commented 5 years ago

Something like this should work:

{% if session.flashdata.category_created is not empty %}
    <p class="alert alert-success">{{ session.flashdata.category_created }}</p>
{% endif %}