2013 August

Generate Category Tree in Magento

<?php $rootDir = “”; //include root path include($rootDir.”app/Mage.php”); $rootcatId= Mage::app()->getStore()->getRootCategoryId(); $categories = Mage::getModel(‘catalog/category’)->getCategories($rootcatId); function  get_categories($categories) {     $array= ‘<ul>’;…

1 9 10 11 13