File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
app/code/Magento/Payment/view/frontend/templates/info/pdf Expand file tree Collapse file tree 1 file changed +23
-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
+ * @see \Magento\Payment\Block\Info
10
+ * @var \Magento\Payment\Block\Info $block
11
+ */
12
+ ?>
13
+ <?php echo $ block ->escapeHtml ($ block ->getMethod ()->getTitle ()); ?> {{pdf_row_separator}}
14
+
15
+ <?php if ($ specificInfo = $ block ->getSpecificInformation ()):?>
16
+ <?php foreach ($ specificInfo as $ label => $ value ):?>
17
+ <?php echo $ block ->escapeHtml ($ label ) ?> :
18
+ <?php echo $ block ->escapeHtml (implode (' ' , $ block ->getValueAsArray ($ value )));?>
19
+ {{pdf_row_separator}}
20
+ <?php endforeach ; ?>
21
+ <?php endif ;?>
22
+
23
+ <?php echo $ block ->escapeHtml (implode ('{{pdf_row_separator}} ' , $ block ->getChildPdfAsArray ())); ?>
You can’t perform that action at this time.
0 commit comments