アップグレード ファイルで次のコードを使用して、Magento で製品のカスタム Yes/No 属性を作成しました。
$model = Mage::getModel('catalog/resource_eav_attribute');
$attributeData = array(
'attribute_code' => 'custom_attribute',
'frontend_label' => 'My custom attribute',
'is_global' => '1',
'frontend_input' => 'boolean',
'backend_type' => 'int',
'default_value' => null,
'is_unique' => '0',
'is_required' => '0',
'is_configurable' => '1',
'is_searchable' => '1',
'is_visible_in_advanced_search' => '1',
'is_comparable' => '1',
'is_used_for_price_rules' => '0',
'is_wysiwyg_enabled' => '1',
'is_html_allowed_on_front' => '1',
'is_visible_on_front' => '1',
'used_in_product_listing' => '1',
'used_for_sort_by' => '1',
'is_filterable_in_search' => 1,
'is_filterable' => 1,
'source_model' => null,
'option' => array(),
'apply_to' => 'simple,configurable,bundle,grouped',
'is_user_defined' => true,
'global' => true,
);
$model->addData($attributeData);
$model->setEntityTypeId(
Mage::getModel('eav/entity')->setType(Mage_Catalog_Model_Product::ENTITY)->getTypeId()
);
$model->save();
コードは機能します。しかし、新しい製品を作成するとき、または製品を編集しようとするときに、デフォルトで [はい] オプションが選択されるようにします。これで、No のみが最初に表示されます。defult_value を true または 1 に変更しようとしましたが、うまくいきません。