vendor/dvdw/events/src/Resources/views/storefront/element/cms-element-webshop-promotion.html.twig line 1

Open in your IDE?
  1. {% if product and product.extensions and product.extensions.dvdwPromotions
  2.     and product.extensions.dvdwPromotions.elements %}
  3.     {% if product.extensions.dvdwParticipations and product.extensions.dvdwParticipations.elements | length > 0 %}
  4.         {% set participation = product.extensions.dvdwParticipations.elements | first %}
  5.         {% set promotion = product.extensions.dvdwPromotions.elements[participation.dvdwPromotionId] %}
  6.     {% endif %}
  7.     {% if promotion and context.extensions.currentDvdwEvent.phase === 'phase-promo-show' or context.extensions.currentDvdwEvent.phase === 'phase-promo-use' %}
  8.         <div class="promo-info-block">
  9.             {% sw_include '@Storefront/storefront/page/product-detail/webshop-promotions.html.twig' with {
  10.                 product: product,
  11.                 promotion: product.extensions.dvdwPromotions.elements | first
  12.             } %}
  13.         </div>
  14.     {% endif %}
  15. {% endif %}