12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /**
- * @var $block \Magento\OfflinePayments\Block\Form\Banktransfer
- */
- $instructions = $block->getInstructions();
- ?>
- <?php if ($instructions): ?>
- <?php $methodCode = $block->escapeHtml($block->getMethodCode());?>
- <ul class="form-list checkout-agreements" id="payment_form_<?= /* @noEscape */ $methodCode ?>" style="display:none;">
- <li>
- <div class="<?= /* @noEscape */ $methodCode ?>-instructions-content checkout-agreement-item-content">
- <?= /* @noEscape */ nl2br($block->escapeHtml($instructions)) ?>
- </div>
- </li>
- </ul>
- <?php endif; ?>
|