instructions.phtml 508 B

123456789101112131415161718
  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. <dl class="payment-method">
  13. <dt class="title"><?= $block->escapeHtml($block->getMethod()->getTitle()) ?></dt>
  14. <?php if ($block->getInstructions()): ?>
  15. <dd class="content"><?= /* @noEscape */ nl2br($block->escapeHtml($block->getInstructions())) ?></dd>
  16. <?php endif; ?>
  17. </dl>