custom/plugins/UandiEfbContactInfo/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_footer %}
  3.     {{ parent() }}
  4.     {% set routeDisable = (config('UandiEfbContactInfo.config.disableStickyBarByRoute') ?: '')|split(';') %}
  5.     {% set controllerDisable = (config('UandiEfbContactInfo.config.disableStickyBarByControllerAndAction') ?: '')|split(';') %}
  6.     {% set disable = activeRoute in routeDisable or controllerName in controllerDisable or (controllerName ~ '::' ~ controllerAction) in controllerDisable %}
  7.     {% if not disable %}
  8.         {% sw_include '@Storefront/storefront/layout/sticky-bar.html.twig' %}
  9.     {% endif %}
  10. {% endblock %}