templates/helper/toasts.flash.html.twig line 1

  1. <script type="text/javascript">
  2.     time = 500;
  3.     options = {title:"{{'Notification'|trans}}", message:"", time, duration: "{{'Maintenant'|trans}}", icon: 'primary', autohide:'true', delay:"10000"}
  4.     // Flexbox container for aligning the toasts -->
  5.     {% for flash in app.flashes('error') %}
  6.         time += 1000;
  7.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"danger"}});
  8.     {% endfor %}
  9.     {% for flash in app.flashes('warning') %}
  10.         time += 1000;
  11.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"warning"}});
  12.     {% endfor %}
  13.     {% for flash in app.flashes('success') %}
  14.         time += 1000;
  15.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"success"}});
  16.     {% endfor %}
  17.     {% for flash in app.flashes('info') %}
  18.         time += 1000;
  19.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"info"}});
  20.     {% endfor %}
  21.     autohide = false;
  22.     {% for flash in app.flashes('error_message') %}
  23.         time += 500;
  24.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"danger", autohide}});
  25.     {% endfor %}
  26.     {% for flash in app.flashes('warning_message') %}
  27.         time += 500;
  28.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"warning", autohide}});
  29.     {% endfor %}
  30.     {% for flash in app.flashes('success_message') %}
  31.         time += 500;
  32.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"success", autohide}});
  33.     {% endfor %}
  34.     {% for flash in app.flashes('info_message') %}
  35.         time += 500;
  36.         $.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"info", autohide}});
  37.     {% endfor %}
  38. </script>