| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <div class="magicmenu">
- <?php if(is_array($categoryArr) && !empty($categoryArr)): ?>
- <ul class="nav-desktop">
- <?php foreach($categoryArr as $category1): ?>
- <?php $childMenu1 = isset($category1['childMenu']) ? $category1['childMenu'] : null; ?>
- <li class="level0">
- <a href="<?= $category1['url'] ?>" class="level-top 1">
- <span class="nav-text"><?= $category1['name'] ?></span>
- </a>
- <?php if(is_array($childMenu1) && !empty($childMenu1)): ?>
- <div class="level-top-mega" style="left:55%;">
- <div class="content-mega">
- <div class="content-mega-horizontal">
- <ul class="level0 mage-column cat-mega">
- <?php foreach($childMenu1 as $category2): ?>
- <li class="children level1">
- <a style="color:#c7c4c4;" href="<?= $category2['url'] ?>">
- <span><?= $category2['name'] ?></span>
- </a>
- <?php $childMenu2 = isset($category2['childMenu']) ? $category2['childMenu'] : null; ?>
- <?php if(is_array($childMenu2) && !empty($childMenu2)): ?>
- <ul class="level1 submenu">
- <?php foreach($childMenu2 as $category3): ?>
- <li class="level2">
- <a href="<?= $category3['url'] ?>"><span><?= $category3['name'] ?></span></a>
- </li>
- <?php endforeach ?>
- </ul>
- <?php endif ?>
- </li>
- <?php endforeach ?>
- </ul>
- </div>
- </div>
- </div>
- <?php endif ?>
- </li>
- <?php endforeach ?>
- </ul>
- <?php endif?>
- </div>
|