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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/buy-widget-form.html.twig' %}
  2. {% set isBootstrap5 = feature('v6.5.0.0') or getAllFeatures()['v6.6.0.0'] is defined %}
  3. {% block page_product_detail_buy_container %}
  4.     {{ parent() }}
  5.     {% block page_product_detail_buy_container_paypal %}
  6.         {% if buyable and product.calculatedCheapestPrice.totalPrice > 0 and product.extensions[constant('Swag\\PayPal\\Checkout\\Cart\\Service\\ExcludedProductValidator::PRODUCT_EXCLUDED_FOR_PAYPAL')] is null %}
  7.             {# @var \Swag\PayPal\Checkout\ExpressCheckout\ExpressCheckoutButtonData expressSettings #}
  8.             {% set expressSettings = page.extensions[constant('Swag\\PayPal\\Checkout\\ExpressCheckout\\ExpressCheckoutSubscriber::PAYPAL_EXPRESS_CHECKOUT_BUTTON_DATA_EXTENSION_ID')] %}
  9.             {% if expressSettings.productDetailEnabled %}
  10.                 <div class="{{ isBootstrap5 ? 'row g-2 mt-0' : 'form-row mt-3' }} justify-content-end">
  11.                     {% sw_include '@SwagPayPal/storefront/component/ecs-spb-checkout/ecs-button.html.twig' with {button_class: 'col-8'} %}
  12.                 </div>
  13.             {% endif %}
  14.         {% endif %}
  15.         {# @var \Swag\PayPal\Installment\Banner\BannerData installmentBanner #}
  16.         {% set installmentBanner = page.extensions[constant('Swag\\PayPal\\Installment\\Banner\\InstallmentBannerSubscriber::PAYPAL_INSTALLMENT_BANNER_DATA_EXTENSION_ID')] %}
  17.         {% if installmentBanner is not null %}
  18.             <div class="{{ isBootstrap5 ? 'row g-2 mt-0' : 'form-row mt-3' }} mb-4 justify-content-end">
  19.                 <div class="{{ buyable ? 'col-8' : 'col-12' }}"
  20.                      data-swag-paypal-installment-banner="true"
  21.                      data-swag-pay-pal-installment-banner-options="{{ installmentBanner|json_encode }}">
  22.                 </div>
  23.             </div>
  24.         {% endif %}
  25.     {% endblock %}
  26. {% endblock %}