substitution.phtml 455 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. /**
  8. * @var \Magento\Payment\Block\Info $block
  9. */
  10. ?>
  11. <div>
  12. <?= $block->getMethod()->getTitle()
  13. ? $block->escapeHtml($block->getMethod()->getTitle())
  14. : $block->escapeHtml(__('Payment method')); ?>
  15. <?= $block->escapeHtml(__(' is not available. You still can process offline actions.')) ?>
  16. </div>