custom/plugins/AtcCustom/src/Resources/views/storefront/component/delivery-information.html.twig line 1

Open in your IDE?
  1. {# Pakt alles uit andere files. ook kwa filter zie restocking en sold out #}
  2. {% sw_extends '@parent/storefront/component/delivery-information.html.twig' %}
  3. {# (shopware) parent switches between blocks #}
  4. {# Available #}
  5. {% block component_delivery_information_default %}
  6.     {% sw_include "@parent/storefront/component/delivery-widget.html.twig" ignore missing %}
  7. {% endblock %}
  8. {# Available with deliverydate #}
  9. {% block component_delivery_information_available %}
  10.     {% sw_include "@parent/storefront/component/delivery-widget.html.twig" ignore missing %}
  11. {% endblock %}
  12. {# Restocking #}
  13. {% block component_delivery_information_restock %}
  14.     {% sw_include "@parent/storefront/component/delivery-widget.html.twig" ignore missing with { 'availability': 'LimitedAvailability' } %}
  15. {% endblock %}
  16. {# Sold out #}
  17. {% block component_delivery_information_soldout %}
  18.     {% sw_include "@parent/storefront/component/delivery-widget.html.twig" ignore missing with { 'availability': 'OutOfStock' } %}
  19. {% endblock %}