Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. <?php foreach ($menus as $class => $id): ?>
  2. <?php $_category = Mage::getModel('catalog/category')->load($id) ?>
  3. <?php if ($_category && $_category->getIsActive()): ?>
  4. <li class="<?= $class ?>">
  5. <a href="<?= $_category->getUrl() ?>"><?= $_category->getName() ?></a>
  6. <i id="<?= $class ?>"></i>
  7. <ul>
  8. <?php
  9. $children = Mage::getModel('catalog/category')
  10. ->getCategories($_category->getId(), 2, true);
  11. ?>
  12. <?php foreach ($children as $k => $child): ?>
  13. <?php if ($child->getIsActive()) : ?>
  14. <li class="<?= ($child->getId() == $active) ? 'active' : '' ?>">
  15. <a href="<?= $child->getUrl() ?>"><?= $this->escapeHtml($child->getName()) ?></a>
  16. </li>
  17. <?php endif ?>
  18. <?php endforeach; ?>
  19. </ul>
  20. </li>
  21. <?php endif; ?>
  22. <?php endforeach; ?>
  23.  
  24. <li class="mobile_shop">
  25. <a href="http://local.magento.lc/shop.html">Shop</a>
  26. <i id="mobile_shop"></i>
  27. <ul>
  28. <li class="">
  29. <a href="http://local.magento.lc/shop/ladies.html">Ladies</a>
  30. </li>
  31. <li class="">
  32. <a href="http://local.magento.lc/shop/gents.html">Gents</a>
  33. </li>
  34. <li class="">
  35. <a href="http://local.magento.lc/shop/home.html">Home</a>
  36. </li>
  37. <li class="">
  38. <a href="http://local.magento.lc/shop/taste.html">Taste</a>
  39. </li>
  40. <li class="">
  41. <a href="http://local.magento.lc/shop/jewelry.html">Jewelry</a>
  42. </li>
  43. </ul>
  44. </li>
  45. <li class="mobile_gift_guide">
  46. <a href="http://local.magento.lc/gift-guide.html">Gift Guide</a>
  47. <i id="mobile_gift_guide"></i>
  48. <ul>
  49. <li class="">
  50. <a href="http://local.magento.lc/shop/ladies.html">Ladies</a>
  51. </li>
  52. <li class="">
  53. <a href="http://local.magento.lc/shop/gents.html">Gents</a>
  54. </li>
  55. <li class="">
  56. <a href="http://local.magento.lc/shop/home.html">Home</a>
  57. </li>
  58. <li class="">
  59. <a href="http://local.magento.lc/shop/taste.html">Taste</a>
  60. </li>
  61. <li class="">
  62. <a href="http://local.magento.lc/shop/jewelry.html">Jewelry</a>
  63. </li>
  64. </ul>
  65. </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement