custom/plugins/MaxiaTaxSwitch6/src/Resources/views/storefront/layout/header/top-bar.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/top-bar.html.twig' %}
  2. {% block layout_header_top_bar_language %}
  3.     {{ parent() }}
  4.     {% block layout_header_top_bar_maxia_tax_switch %}
  5.         {% set maxiaTaxSwitch = context.extensions.maxiaTaxSwitch %}
  6.         {% if maxiaTaxSwitch.pluginEnabled and maxiaTaxSwitch.showInTopBar %}
  7.             {% sw_include '@Storefront/storefront/plugins/maxia_tax_switch/switcher.html.twig' with {
  8.                 displayType: maxiaTaxSwitch.displayTypeTopBar,
  9.                 id: 'maxiaTaxSwitchTopbar'
  10.             } %}
  11.         {% endif %}
  12.     {% endblock %}
  13. {% endblock %}