File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
app/code/Magento/OfflinePayments/view/base/templates/info/pdf Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+
7
+ // @codingStandardsIgnoreFile
8
+ /**
9
+ * @var $block \Magento\OfflinePayments\Block\Info\Checkmo
10
+ */
11
+ ?>
12
+ <?= $ block ->escapeHtml ($ block ->getMethod ()->getTitle ()) ?>
13
+ {{pdf_row_separator}}
14
+ <?php if ($ block ->getInfo ()->getAdditionalInformation ()): ?>
15
+ {{pdf_row_separator}}
16
+ <?php if ($ block ->getPayableTo ()): ?>
17
+ <?= $ block ->escapeHtml (__ ('Make Check payable to: %1 ' , $ block ->getPayableTo ())) ?>
18
+ {{pdf_row_separator}}
19
+ <?php endif ; ?>
20
+ <?php if ($ block ->getMailingAddress ()): ?>
21
+ <?= $ block ->escapeHtml (__ ('Send Check to: ' )) ?>
22
+ {{pdf_row_separator}}
23
+ <?= /* @noEscape */ nl2br ($ block ->escapeHtml ($ block ->getMailingAddress ())) ?>
24
+ {{pdf_row_separator}}
25
+ <?php endif ; ?>
26
+ <?php endif ; ?>
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ /**
7
+ * @var $block \Magento\OfflinePayments\Block\Info\Purchaseorder
8
+ */
9
+ ?>
10
+ <?= $ block ->escapeHtml (__ ('Purchase Order Number: %1 ' , $ block ->getInfo ()->getPoNumber ())) ?>
11
+ {{pdf_row_separator}}
You can’t perform that action at this time.
0 commit comments