custom/static-plugins/LDSCustom/src/Resources/views/storefront/utilities/alert.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/utilities/alert.html.twig' %}
  2. {% block utilities_alert_icon %}
  3.     {% if icon != "false" %}
  4.         {% if type == "danger" %}
  5.             {% sw_icon 'blocked' %}
  6.         {% elseif type == "warning" %}
  7.             {% sw_icon 'warning' %}
  8.         {% elseif type == "info" %}
  9.             {% sw_icon 'info' %}
  10.         {% elseif type == "success" %}
  11.             {% if icon == "sale" %}
  12.                 {% sw_icon 'package-gift' %}
  13.             {% else %}
  14.                 {% sw_icon 'checkmark-circle' %}
  15.             {% endif %}
  16.         {% else %}
  17.             {% sw_icon 'alert' %}
  18.         {% endif %}
  19.     {% endif %}
  20. {% endblock %}