Magento:将值从config设置为默认属性值

时间:2014-03-20 12:12:26

标签: magento

一方面我的模块配置中有一个名为min pricecf的字段 另一方面,我有一个名为min_price的属性,我已经创建了unsing安装脚本

这是属性:

$setup->addAttribute('catalog_product', 'min_price', array(

        'group'                       => 'Prices',
        'input'                       => 'text',
        'type'                        => 'decimal',
        'label'                       => 'Min Price',
        'backend'                     => '',
        'visible'                     => 1,
        'required'                    => 0,
        'user_defined'                => 1,
        'searchable'                  => 1,
        'filterable'                  => 0,
        'default'                     => 'Here ????',
        'comparable'                  => 1,
        'visible_on_front'            => 1,
        'visible_in_advanced_search'  => 0,
        'is_html_allowed_on_front'    => 0,
        'global'                      => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,

));

我想做的是从min pricecf到min_price得到的值,该值应该是默认值。

0 个答案:

没有答案