我对Magento CMS有这样的问题。我需要检索所有类别的制造商。 乍一看这不是问题,因为有一个过滤块和图层导航,您可以从中采取必要的方法。
首先,我在重新定义的类别模型/app/code/local/Mage/ Catalog/Model/Category.php
public function getManufacturers()
{
$collection = Mage::getResourceModel('catalog/product_attribute_collection')
->setItemObjectClass('catalog/resource_eav_attribute');
$setIds = $this->getProductCollection()->getSetIds();
$collection->getSelect()->distinct(true);
$collection
->setAttributeSetFilter($setIds)
->addStoreLabel(Mage::app()->getStore()->getId())
->setOrder('position', 'ASC');
$collection->addIsFilterableFilter();;
$collection->load();
return $collection;
}
我在类别模板中调用此方法:
$manufscturers = $_category->getManufacturers();
所以我们得到一个巨大的对象Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Attribute_Collection
。
然后:
$items = $manufscturers->getItems();
我们得到了对象Mage_Catalog_Model_Resource_Eav_Attribute
。
然后我不知道该怎么做。那是一个死胡同。也许这是错误的方式?
Magento的版本 - 1.4.0.1
感谢您的帮助!
答案 0 :(得分:2)
以下是如何让所有制造商获得一个类别:
$category = Mage::registry('current_category');
$layer = Mage::getSingleton('catalog/layer');
$layer->setCurrentCategory($category);
$attributes = $layer->getFilterableAttributes();
$manufacturers = array();
foreach ($attributes as $attribute) {
if ($attribute->getAttributeCode() == 'manufacturer') {
$filterBlockName = 'catalog/layer_filter_attribute';
$result = Mage::app()->getLayout()->createBlock($filterBlockName)->setLayer($layer)->setAttributeModel($attribute)->init();
foreach($result->getItems() as $option) {
$manufacturers[$option->getValue()] = $option->getLabel();
}
}
}
var_dump($manufacturers);
希望这很有用。
干杯!
答案 1 :(得分:1)
据我所知,您已经实现了产品属性收集 不取决于给定的类别或产品集合。
我建议您使用以下类别的产品系列:
$layer = $this->getLayer();
$productCollection = $layer->getProductCollection();
然后遍历它并获取给定类别的所有属性值。 缓存结果。 在magento中完全相同(以“magento方式”的方式)
答案 2 :(得分:1)
花了很长时间,但我的回答可能对某人有帮助。
如果您需要在类别页面上获取类别过滤器,则可能会得到错误的结果。
我的代码基于代码@MagePsycho
public function getCategoryAttributeFilter($category, $attributeCode)
{
/** @var Mage_Catalog_Model_Layer $layer */
$layer = Mage::getModel('catalog/layer');
$layer->setCurrentCategory($category);
$attributes = $layer->getFilterableAttributes();
$request = Mage::app()->getRequest();
Mage::app()->setRequest($newRequest = new Mage_Core_Controller_Request_Http());
$newRequest->setParam($attributeCode, false);
$items = array();
foreach ($attributes as $attribute) {
if ($attribute->getAttributeCode() == $attributeCode) {
$filterBlockName = 'catalog/layer_filter_attribute';
/** @var Mage_Catalog_Block_Layer_Filter_Attribute $block */
$block = Mage::app()->getLayout()->createBlock($filterBlockName);
$result = $block->setLayer($layer)->setAttributeModel($attribute)->init();
foreach($result->getItems() as $option) {
$manufacturers[$option->getValue()] = $option->getLabel();
}
//$items = $result->getItems();
break;
}
}
Mage::app()->setRequest($request);
Zend_Debug::dump($manufacturers);
return $items;
}
$category = Mage::getModel('catalog/category')->load(/*category id here*/);
$helper->getCategoryAttributeFilter($category, 'brand');
答案 3 :(得分:1)
如果要在制造商页面中添加分层导航。请添加制造商作为类别,并使用以下magento脚本创建类别并以编程方式分配产品。
[tf, loc]=ismemberf(0.3, 0:0.1:1, 'tol', 1.5)
分配产品
$attrLabel = 'manufacturer';
$attr = $product->getResource()->getAttribute($attrLabel);
$manufacturer_id = $attr->getSource()->getOptionId($manufacturer);
$newproducts = $product->getCollection()->addAttributeToFilter(array(array('attribute'=>'manufacturer', 'eq'=> $manufacturer_id)));