button.phtml 497 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php /** @var $block \Magento\Checkout\Block\Onepage\Success */ ?>
  9. <?php if ($block->getCanViewOrder() && $block->getCanPrintOrder()) :?>
  10. <a href="<?= /* @escapeNotVerified */ $block->getPrintUrl() ?>" target="_blank" class="print">
  11. <?= /* @escapeNotVerified */ __('Print receipt') ?>
  12. </a>
  13. <?= $block->getChildHtml() ?>
  14. <?php endif;?>