custom/plugins/ZweiPunktBettenAbc/src/Resources/views/storefront/page/product-detail/buy-widget.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@Storefront/storefront/page/product-detail/buy-widget.html.twig" %}
  2. {% block page_product_detail_buy_form %}
  3.     {# DEV-3611#}
  4.     {% if
  5.         2023 == "now"|date("Y") and
  6.         11 == "now"|date("m") and
  7.         29 < "now"|date("d") and
  8.         31 > "now"|date("d") and
  9.         page.product.manufacturer.translated.name == 'Schwarzwaldmarie'
  10.     %}
  11.         <div class="alert alert-has-icon alert-info" role="alert">
  12.             {% sw_icon 'marketing' %}
  13.             <div class="alert-content-container">
  14.                 <div class="alert-content">
  15.                     {{ "zweipunkt.promotion.banner"|trans }}
  16.                 </div>
  17.             </div>
  18.         </div>
  19.     {% elseif
  20.         2023 == "now"|date("Y") and
  21.         12 == "now"|date("m") and
  22.         page.product.manufacturer.translated.name == 'Schwarzwaldmarie'
  23.     %}
  24.         <div class="alert alert-has-icon alert-info" role="alert">
  25.             {% sw_icon 'marketing' %}
  26.             <div class="alert-content-container">
  27.                 <div class="alert-content">
  28.                     {{ "zweipunkt.promotion.banner"|trans }}
  29.                 </div>
  30.             </div>
  31.         </div>
  32.     {% endif %}
  33.     {% if page.product.restockTime >= 99 and page.product.availableStock < 1 %}
  34.     {% else %}
  35.         {{ parent() }}
  36.     {% endif %}
  37. {% endblock %}