0

我正在为 magento 开发一个导入模块。我需要找出一个属性是否属于一个属性组。我加载了属性以及属性组。我试过了:

$attributeCollection = $attributeGroup->getAttributes();

理论是我可以查看集合,并确定属性是否已分配给属性组。

4

1 回答 1

0

您可以从属性中获取组 ID,并在需要时加载组。

$product = Mage::getModel('catalog/product')->load(ID_HERE);
foreach($product->getAttributes() as $attribute)
{
    $groupId = $attribute->getAttributeGroupId();
}

如果您想加载组模型:

$group = Mage::getModel('eav/entity_attribute_group')->load($groupId);   
于 2012-10-16T22:44:05.030 回答