如何以编程方式检查magento中是否存在属性组

时间:2014-10-24 00:08:20

标签: php magento

是否有标准的方法来检查Magento中属性集中是否存在属性组?

我到处寻找,但除了获取所有属性组的列表,然后循环遍历它们之外,没有找到任何东西。

有更好的方法吗?请指教。

提前谢谢。

1 个答案:

答案 0 :(得分:1)

嗯,找到了一个嵌入在页面上的答案,该页面描述了如何添加属性集。 以下是相关信息:

$model = Mage::getModel('eav/entity_setup', 'core_setup');
$attributeSetId = $model->getAttributeSetId('catalog_product', 'Default');
$attributeGroupId = $model->getAttributeGroup('catalog_product', $attributeSetId, 'name of attribute group here');

Haven对上面的代码进行了大量测试,但它完成了我需要它做的事情;我很快就继续前进。