salebar.phtml 759 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php if (sizeof($block->getTotals()) > 0): ?>
  9. <?php foreach ($block->getTotals() as $_total): ?>
  10. <div class="dashboard-item dashboard-item-primary">
  11. <div class="dashboard-item-title"><?= /* @escapeNotVerified */ $_total['label'] ?></div>
  12. <div class="dashboard-item-content">
  13. <strong class="dashboard-sales-value">
  14. <?= /* @escapeNotVerified */ $_total['value'] ?>
  15. <span class="dashboard-sales-decimals"><?= /* @escapeNotVerified */ $_total['decimals'] ?></span>
  16. </strong>
  17. </div>
  18. </div>
  19. <?php endforeach; ?>
  20. <?php endif; ?>