1234567891011121314151617 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /**
- * @var \Magento\Payment\Block\Info $block
- */
- ?>
- <div>
- <?= $block->getMethod()->getTitle()
- ? $block->escapeHtml($block->getMethod()->getTitle())
- : $block->escapeHtml(__('Payment method')); ?>
- <?= $block->escapeHtml(__(' is not available. You still can process offline actions.')) ?>
- </div>
|