You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
1019 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <dl id="dl-<?= /* @noEscape */ $id ?>" class="accordion">
  8. <?php foreach ($sections as $sectionId => $section) : ?>
  9. <dt id="dt-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $sectionId ?>">
  10. <strong><?= $block->escapeHtml($section['title']) ?></strong>
  11. </dt>
  12. <dd id="dd-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $section['id'] ?>" class="section-menu <?= !empty($section['active']) ? 'open' : '' ?>">
  13. <ul>
  14. <?php foreach ($section['children'] as $menuId => $menuItem) : ?>
  15. <li id="li-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $sectionId ?>-<?= /* @noEscape */ $menuId ?>">
  16. <a href="#" title="<?= $block->escapeHtmlAttr($menuItem['title']) ?>">
  17. <span><?= $block->escapeHtml($menuItem['label']) ?></span>
  18. </a>
  19. </li>
  20. <?php endforeach ?>
  21. </ul>
  22. </dd>
  23. <?php endforeach ?>
  24. </dl>