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

Open in your IDE?
  1. {% sw_extends "@Storefront/storefront/component/delivery-information.html.twig" %}
  2. {% block component_delivery_information_default_text %}
  3.     {% set FURNPLAN_CONTAINER_LINE_ITEM_TYPE = constant('ArboroFurnplan\\Core\\Checkout\\Furnplan\\LineItemFactoryHandler\\FurnplanContainerLineItemFactory::TYPE') %}
  4.     {% if lineItem.type == FURNPLAN_CONTAINER_LINE_ITEM_TYPE %}
  5.         {% block component_delivery_information_default_text_furnplan %}
  6.             {% set shippingTime = product.deliveryTime.name|trans %}
  7.             {{ "detail.deliveryTimeAvailable"|trans({
  8.                 '%name%': shippingTime
  9.             })|sw_sanitize }}
  10.         {% endblock %}
  11.     {% else %}
  12.         {{ parent() }}
  13.     {% endif %}
  14. {% endblock %}