detailed.phtml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. /** @var \Magento\Review\Block\Rating\Entity\Detailed $block */
  8. ?>
  9. <?php if (!empty($collection) && $collection->getSize()): ?>
  10. <div class="table-wrapper">
  11. <table class="data table ratings review summary">
  12. <caption class="table-caption"><?= $block->escapeHtml(__('Ratings Review Summary')) ?></caption>
  13. <tbody>
  14. <?php foreach ($collection as $_rating): ?>
  15. <?php if ($_rating->getSummary()): ?>
  16. <tr>
  17. <th class="label" scope="row"><?= $block->escapeHtml(__($_rating->getRatingCode())) ?></th>
  18. <td class="value">
  19. <div class="rating box">
  20. <div class="rating" style="width:<?= /* @noEscape */ ceil($_rating->getSummary()) ?>%;"></div>
  21. </div>
  22. </td>
  23. </tr>
  24. <?php endif; ?>
  25. <?php endforeach; ?>
  26. </tbody>
  27. </table>
  28. </div>
  29. <?php endif; ?>