服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

Magento检索某个店铺下的分类信息

时间:2016-10-22 16:01来源:未知 作者:最模板 点击:
Magento检索某个店铺下的分类信息, Mage_Catalog_Model_Category模型类的getCategories方法可做此用 .... /** * $parent : 查询的根分类 * $recursionLevel : 查询层级0为所有 * $sorted : true|false * $asCollection :t
Magento检索某个店铺下的分类信息, Mage_Catalog_Model_Category模型类的getCategories方法可做此用 
 
....  
/** 
* $parent : 查询的根分类 
* $recursionLevel : 查询层级0为所有 
* $sorted : true|false 
* $asCollection :true将分类平面展开,false则呈树状展示。 
* $toLoad : true|false; 
*/  
public function getCategories($parent, $recursionLevel = 0, $sorted=false, $asCollection=false, $toLoad=true) {  
.........  
}  
 
 
两个调用实例如下: 
 
// 取得当前店铺的根分类ID  
$parent     = Mage::app()->getStore()->getRootCategoryId();  
// 获得当前店铺下的所有分类  
$categories = Mage::getModel('catalog/category')  
->getCategories($parent, 0, false, true, true);  
 
 
 
// 取得店铺代码为embview的根分类ID  
$parent     = Mage::app()->getStore('embview')->getRootCategoryId();  
// 获得当前店铺下的所有分类  
$categories = Mage::getModel('catalog/category')  
->getCategories($parent, 0, false, true, true);  
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------