custom/plugins/PayonePayment/src/Resources/views/storefront/page/checkout/cart/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/cart/index.html.twig' %}
  2. {% block page_checkout_aside_actions %}
  3.     {{ parent() }}
  4.     {% if not context.customer %}
  5.         {% if constant('PayonePayment\\PaymentMethod\\PayonePaypalExpress::UUID') in activePaymentPaymentMethods %}
  6.             {% block page_checkout_payone_paypal_express_button %}
  7.                 <div class="checkout-aside-action">
  8.                     <a href="{{ path('frontend.account.payone.paypal.express-checkout') }}" title="{{ "PayonePayment.paypalExpress.buttonTitle" | trans }}" class="btn btn-block btn-primary">
  9.                         {{ "PayonePayment.paypalExpress.buttonTitle" | trans }}
  10.                     </a>
  11.                 </div>
  12.             {% endblock %}
  13.         {% endif %}
  14.     {% endif %}
  15. {% endblock %}