Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
info.phtml
Go to the documentation of this file.
1 <?php
7 ?>
8 <section class="admin__page-section">
9  <div class="admin__page-section-title">
10  <span class="title"><?= $block->escapeHtml(__('General Information')) ?></span>
11  </div>
12  <div class="admin__page-section-content log-details">
13  <table class="data-table admin__table-secondary order-billing-agreement-table">
14  <tbody>
15  <tr>
16  <th><?= $block->escapeHtml(__('Reference ID')) ?></th>
17  <td><?= $block->escapeHtml($block->getReferenceId()) ?></td>
18  </tr>
19  <tr>
20  <th><?= $block->escapeHtml(__('Customer')) ?></th>
21  <td>
22  <a href="<?= $block->escapeUrl($block->getCustomerUrl()) ?>">
23  <?= $block->escapeHtml($block->getCustomerEmail()) ?>
24  </a>
25  </td>
26  </tr>
27  <tr>
28  <th><?= $block->escapeHtml(__('Status')) ?></th>
29  <td><?= $block->escapeHtml($block->getStatus()) ?></td>
30  </tr>
31  <tr>
32  <th><?= $block->escapeHtml(__('Created At')) ?></th>
33  <td><?= $block->escapeHtml($block->getCreatedAt()) ?></td>
34  </tr>
35  <tr>
36  <th><?= $block->escapeHtml(__('Updated At')) ?></th>
37  <td><?= $block->escapeHtml($block->getUpdatedAt()) ?></td>
38  </tr>
39  </tbody>
40  </table>
41  </div>
42 </section>
__()
Definition: __.php:13
$block
Definition: block.php:8