You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 regels
573 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /** @var $block \Magento\Checkout\Block\Onepage\Failure */
  7. ?>
  8. <?php if ($block->getRealOrderId()) :?>
  9. <p><?= $block->escapeHtml(__('Order #') . $block->getRealOrderId()) ?></p>
  10. <?php endif ?>
  11. <?php if ($error = $block->getErrorMessage()) :?>
  12. <p><?= $block->escapeHtml($error) ?></p>
  13. <?php endif ?>
  14. <p><?= $block->escapeHtml(
  15. __('Click <a href="%1">here</a> to continue shopping.', $block->escapeUrl($block->getContinueShoppingUrl())),
  16. ['a']
  17. ) ?>
  18. </p>