Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

31 строка
1012 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. use Magento\Backend\Block\Dashboard\Totals;
  7. use Magento\Framework\Escaper;
  8. /**
  9. * @var Totals $block
  10. * @var Escaper $escaper
  11. */
  12. ?>
  13. <?php if (count($block->getTotals()) > 0): ?>
  14. <div class="dashboard-totals" id="dashboard_diagram_totals">
  15. <ul class="dashboard-totals-list">
  16. <?php foreach ($block->getTotals() as $total): ?>
  17. <li class="dashboard-totals-item">
  18. <span class="dashboard-totals-label"><?= $escaper->escapeHtml($total['label']) ?></span>
  19. <strong class="dashboard-totals-value">
  20. <?= /* @noEscape */ $total['value'] ?>
  21. <span class="dashboard-totals-decimals"><?= /* @noEscape */ $total['decimals'] ?></span>
  22. </strong>
  23. </li>
  24. <?php endforeach; ?>
  25. </ul>
  26. </div>
  27. <?= $block->getChildHtml() ?>
  28. <?php endif; ?>