码迷,mamicode.com
首页 > 其他好文 > 详细

Magento架构师的笔记-----Magento显示当前目录的父分类和子分类的分类名

时间:2014-12-12 11:16:46      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   for   strong   on   div   

Magento目录的分类页面里,希望在左侧导航获取到父分类子分类,可以用以下方法:
打开app/your_package/your_themes/template/catalog/navigation/left.phtml

显示父分类分类名

1
2
3
4
5
6
7
8
9
10
$currentCat = Mage::registry(‘current_category‘);
//如果是根目录,则显示当前目录
if ( $currentCat->getParentId() == Mage::app()->getStore()->getRootCategoryId() )
//显示当前目录名
echo $this->getCurrentCategory()->getName() ;
else
{
//显示当前目录的父分类名
echo $this->getCurrentCategory()->getParentCategory()->getName() ;
}

显示子分类分类名

显示的子分类是建立在当前的父分类的基础上

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$currentCat = Mage::registry(‘current_category‘);
 
if ( $currentCat->getParentId() == Mage::app()->getStore()->getRootCategoryId() )
{
    // 当前分类是顶级分类
    $loadCategory = $currentCat;
}
else
{
    // 当前分类是顶级分类的的一个子分类,载入当前分类的父分类
    $loadCategory = Mage::getModel(‘catalog/category‘)->load($currentCat->getParentId());
}
$subCategories = explode(‘,‘, $loadCategory->getChildren());
 
foreach ( $subCategories as $subCategoryId )
{
    $cat = Mage::getModel(‘catalog/category‘)->load($subCategoryId);
 
    if($cat->getIsActive())
    {
        echo ‘<a href="‘.$cat->getURL().‘">‘.$cat->getName().‘</a>‘;
    }
}
 

Magento架构师的笔记-----Magento显示当前目录的父分类和子分类的分类名

标签:http   io   ar   os   sp   for   strong   on   div   

原文地址:http://www.cnblogs.com/focai/p/4159155.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!