state.phtml 596 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php
  9. /**
  10. * Mustishipping state
  11. *
  12. * @see \Magento\Multishipping\Block\Checkout\State
  13. */
  14. ?>
  15. <ol class="block multicheckout progress items" id="checkout-progress-state">
  16. <?php foreach ($block->getSteps() as $_step): ?>
  17. <li title="<?= /* @escapeNotVerified */ $_step->getLabel() ?>" class="item<?= ($_step->getIsActive()) ? ' active' : '' ?>"><span><?= /* @escapeNotVerified */ $_step->getLabel() ?></span></li>
  18. <?php endforeach; ?>
  19. </ol>