case_info.phtml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php /** @var $block Magento\Signifyd\Block\Adminhtml\CaseInfo */ ?>
  9. <?php
  10. if ($block->isEmptyCase()) {
  11. return '';
  12. }
  13. ?>
  14. <section class="admin__page-section order-case-info">
  15. <div class="admin__page-section-title">
  16. <span class="title"><?= $block->escapeHtml(__('Fraud Protection Information')) ?></span>
  17. </div>
  18. <div class="admin__page-section-content">
  19. <div class="admin__page-section-item case-information">
  20. <div class="admin__table-wrapper">
  21. <table class="admin__table-secondary order-case-table">
  22. <tbody>
  23. <tr>
  24. <th class="col-guarantee-disposition"><?= $block->escapeHtml(__('Signifyd Guarantee Decision')) ?></th>
  25. <td class="col-guarantee-disposition"><?= $block->escapeHtml($block->getCaseGuaranteeDisposition()) ?></td>
  26. </tr>
  27. </tbody>
  28. </table>
  29. </div>
  30. </div>
  31. </div>
  32. </section>