自定义产品类型的自定义属性

时间:2012-02-06 12:23:38

标签: magento

我已经创建了一种新的产品类型,需要创建一些自定义属性并将其关联起来。

有没有办法可以在设置代码中完成?

更新 当我说设置代码时我的意思是在“module / sql / module_setup / mysql4-install-0.1.0.php”文件中,当Magento首次使用该模块时。

1 个答案:

答案 0 :(得分:0)

这有助于让我朝着正确的方向前进,http://www.danneh.org/2010/03/adding-multi-select-attributes-using-an-installer-in-magento/

您还需要在config.xml

中使用它
<global>
    <resources>
        <mymodule_setup>
            <setup>
                <module>Company_Mymodule</module>
                <class>Company_Mymodule_Model_Mysql4_Setup</class>
            </setup>
            <connection>
                <use>core_setup</use>
            </connection>
        </mymodule_setup>
    <resources>
</global>