Magento代码可按名称提取单个属性集

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento代码可按名称提取单个属性集相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. $entityTypeId = Mage::getModel('eav/entity')->setType('catalog_product')->getTypeId();
  3. $attributeSet = Mage::getResourceModel('eav/entity_attribute_set_collection')->setEntityTypeFilter($entityTypeId)->addFilter('attribute_set_name', 'Quantity');
  4. echo "<pre>";
  5. var_dump($attributeSet->getData());
  6. echo "</pre>";
  7. ?>

以上是关于Magento代码可按名称提取单个属性集的主要内容,如果未能解决你的问题,请参考以下文章

如何获取属性集名称?

Magento开发经验总结(一 初初见你——产品属性集搜索模块)

设置 Magento2 后如何安装示例数据?

在 Magento 中显示可配置产品的简单产品库存

自定义模块的自定义布局不会在 Magento 1.9 中加载

如何根据Magento可配置产品中的不同属性集更改产品图像?