button.phtml 533 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /** @var \Magento\InstantPurchase\Block\Button $block */
  7. ?>
  8. <?php if ($block->isEnabled()) : ?>
  9. <div id="instant-purchase" data-bind="scope:'instant-purchase'">
  10. <!-- ko template: getTemplate() --><!-- /ko -->
  11. </div>
  12. <script type="text/x-magento-init">
  13. {
  14. "#instant-purchase": {
  15. "Magento_Ui/js/core/app": <?= /* @escapeNotVerified */ $block->getJsLayout();?>
  16. }
  17. }
  18. </script>
  19. <?php endif; ?>