instructions.phtml 543 B

12345678910111213141516171819202122
  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. * @see \Magento\Payment\Block\Info
  10. */
  11. ?>
  12. <p><?= $block->escapeHtml($block->getMethod()->getTitle()) ?></p>
  13. <?php if ($block->getInstructions()): ?>
  14. <table>
  15. <tbody>
  16. <tr>
  17. <td><?= /* @noEscape */ nl2br($block->escapeHtml($block->getInstructions())) ?></td>
  18. </tr>
  19. </tbody>
  20. </table>
  21. <?php endif; ?>