我正在使用 magento 1.7.2,我想添加带有时间的日期属性,以保存该产品的数据库中的日期和时间。
我曾尝试使用此代码在我的模块中使用 mysql-setup 文件添加新属性。
$setup->addAttribute('catalog_product', 'new_date', array(
'group' => 'General',
'input' => 'date',
'type' => 'datetime',
'label' => 'New Date',
'backend' => 'eav/entity_attribute_backend_datetime',
'visible' => 1,
'required' => 0,
'user_defined' => 1,
'searchable' => 1,
'filterable' => 1,
'comparable' => 1,
'visible_on_front' => 1,
'visible_in_advanced_search' => 0,
'is_html_allowed_on_front' => 1,
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
));
但这给了我只选择日期而不是时间。
请帮我。
谢谢。