如何在安装模块期间更改eav属性属性。
具体来说,我想将产品属性从需要更改为不需要。
我目前正在我的模块设置中合并getDefaultEntities调用中的更新产品属性,但它给出的结果很糟糕。
例如:
public function getDefaultEntities()
{
return array(
'catalog_product' => array(
'entity_attribute_collection' => 'catalog/product_attribute_collection',
'attribute_model' => 'catalog/resource_eav_attribute',
'table' => 'catalog/product',
'entity_model' => 'catalog/product',
'additional_attribute_table' => 'catalog/eav_attribute',
'attributes' => array(
'short_description' => array('required'=> false)
)
)
);
}
在short_description字段中丢失其前端标签的结果
答案 0 :(得分:19)
/* @var $installer Mage_Catalog_Model_Resource_Setup */
$installer->updateAttribute('catalog_product','short_description','is_required',0);