Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

20 Zeilen
705 B

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