File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed
app/code/Magento/Payment/view/adminhtml/templates/info Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © 2015 Magento. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+
7
+ // @codingStandardsIgnoreFile
8
+ ?>
9
+ <?php
10
+ /**
11
+ * @see \Magento\Payment\Block\Info
12
+ */
13
+ ?>
14
+
15
+ <?php if ($ additional_info = $ block ->getAdditionalInfo ()):?>
16
+ <table class="data-table" cellspacing="0">
17
+ <?php foreach ($ additional_info as $ label => $ value ):?>
18
+ <tr>
19
+ <th><?php echo $ block ->escapeHtml ($ label )?> : </th>
20
+ <td><?php echo nl2br (implode ("\n" , $ block ->getValueAsArray ($ value , true )))?> </td>
21
+ </tr>
22
+ <?php endforeach ; ?>
23
+ </table>
24
+ <?php endif ;?>
25
+
26
+ <?php echo $ block ->getChildHtml ()?>
Original file line number Diff line number Diff line change 14
14
?>
15
15
<?php echo $ block ->escapeHtml ($ block ->getMethod ()->getTitle ()) ?>
16
16
17
- <?php if ($ fraud_msg = $ block ->escapeHtml ($ block ->getMethod ()->getFraudMessage ())):?>
18
- <br/><b><?php echo __ ('Fraud status ' )?> :</b> <?php echo __ ($ fraud_msg )?>
19
- <?php endif ;?>
20
-
21
17
<?php if ($ _specificInfo = $ block ->getSpecificInformation ()):?>
22
18
<table class="data-table" cellspacing="0">
23
19
<?php foreach ($ _specificInfo as $ _label => $ _value ):?>
You can’t perform that action at this time.
0 commit comments