12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /**
- * @var \Magento\Payment\Block\Info $block
- * @see \Magento\Payment\Block\Info
- */
- ?>
- <p><?= $block->escapeHtml($block->getMethod()->getTitle()) ?></p>
- <?php if ($block->getInstructions()): ?>
- <table>
- <tbody>
- <tr>
- <td><?= /* @noEscape */ nl2br($block->escapeHtml($block->getInstructions())) ?></td>
- </tr>
- </tbody>
- </table>
- <?php endif; ?>
|