You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
-
- /**
- * @var $block \Magento\OfflinePayments\Block\Info\Checkmo
- */
- ?>
- <dl class="payment-method checkmemo">
- <dt class="title"><?= $block->escapeHtml($block->getMethod()->getTitle()) ?></dt>
- <?php if ($block->getInfo()->getAdditionalInformation()) : ?>
- <?php if ($block->getPayableTo()) : ?>
- <dd class="content">
- <strong><?= $block->escapeHtml(__('Make Check payable to')) ?></strong>
- <?= $block->escapeHtml($block->getPayableTo()) ?>
- </dd>
- <?php endif; ?>
- <?php if ($block->getMailingAddress()) : ?>
- <dd class="content">
- <strong><?= $block->escapeHtml(__('Send Check to')) ?></strong>
- <address class="checkmo mailing address">
- <?= /* @noEscape */ nl2br($block->escapeHtml($block->getMailingAddress())) ?>
- </address>
- </dd>
- <?php endif; ?>
- <?php endif; ?>
- </dl>
|