我正在尝试multiselect
在我的 magento 后端类别中有一个选项。
我有以下代码:
$installer = $this;
$installer->startSetup();
$attribute = array(
'group' => "General Information", // and this one
'label' => 'Location',
'type' => 'varchar',
'input' => 'multiselect',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'visible' => true,
'required' => false,
'is_user_defined' => true,
'option'=> array (
'value' => array(
'england'=> array(
0 =>'England'),
'scotland'=> array(
0 =>'Scotland')
)
)
);
$installer->addAttribute('catalog_category', 'bottom_description', $attribute);
$installer->endSetup();
这会在后端创建一个新属性,但没有值。
我是否需要配置其他任何东西才能看到这些值?
谢谢
编辑:
在 config.xml 我有:
<version>0.8.0</version>
我有另一个文件:
mysql4-upgrade-0.7.0-0.8.0.php
当我清除缓存并访问类别时,该文件似乎没有运行。
有任何想法吗?