我目前的目标是添加一个新的客户属性(带有int
类型),该属性应该显示为具有预定义选项的select(从具有可在后端编辑的条目的模型加载,这已完成)。
我正在努力正确使用$installer->addAttribute()
方法,尤其是指定正确的源选项。其他问题是新属性未保存到eav_entity_attribute表
我在使用Magento CE 1.5.1.0
答案 0 :(得分:70)
这是带有int
渲染器的基本text
属性的代码:
$installer = $this;
$installer->startSetup();
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
$setup->addAttribute('customer', 'your_attribute_code_here', array(
'input' => 'text',
'type' => 'int',
'label' => 'Some textual description',
'visible' => 1,
'required' => 0,
'user_defined' => 1,
));
$entityTypeId = $setup->getEntityTypeId('customer');
$attributeSetId = $setup->getDefaultAttributeSetId($entityTypeId);
$attributeGroupId = $setup->getDefaultAttributeGroupId($entityTypeId, $attributeSetId);
$setup->addAttributeToGroup(
$entityTypeId,
$attributeSetId,
$attributeGroupId,
'your_attribute_code_here',
'999' //sort_order
);
$oAttribute = Mage::getSingleton('eav/config')->getAttribute('customer', 'your_attribute_code_here');
$oAttribute->setData('used_in_forms', array('adminhtml_customer'));
$oAttribute->save();
$setup->endSetup();
添加属性的不寻常步骤是setData('used_in_forms')
这似乎是客户属性所特有的。没有它,该字段将不会被渲染,当然不会在adminhtml中。您可以在customer_form_attribute
数据库表中查看此数组的有效选项。
在使用带有预定义选项的select
方面,这就是您所需要的:
$iAttributeId = $installer->getAttributeId($entityTypeId, 'your_attribute_code_here');
$aClasses = array('TV','DVD','Home Theatre','Air Conditioner','Stereo/Hifi','Game Console','Camcorder','VCR','Set Top Box','PVR');
$aOption = array();
$aOption['attribute_id'] = $iAttributeId;
for($iCount=0;$iCount<sizeof($aClasses);$iCount++){
$aOption['value']['option'.$iCount][0] = $aClasses[$iCount];
}
$setup->addAttributeOption($aOption);
这是walk-through使用自定义来源的下拉列表
希望这有帮助,
JD
答案 1 :(得分:23)
@ Jonathan Day的答案很棒,对我帮助很大。但是 - 只要您将setup
课程设置为Mage_Customer_Model_Entity_Setup
,那么Magento可以为您完成所有这些工作:
<!-- config.xml Example -->
<?xml version="1.0"?>
<config>
<global>
<resources>
<acme_module_setup>
<setup>
<module>Acme_Module</module>
<class>Mage_Customer_Model_Entity_Setup</class>
</setup>
<connection>
<use>core_setup</use>
</connection>
</acme_module_setup>
</resources>
</global>
</config>
这是mysql4-install-X.X.X.php
文件:
<?php
$installer = $this;
/* @var $installer Mage_Customer_Model_Entity_Setup */
$installer->startSetup();
$installer->addAttribute(
'customer',
'acme_imported',
array(
'group' => 'Default',
'type' => 'int',
'label' => 'Imported into Acme',
'input' => 'select',
'source' => 'eav/entity_attribute_source_boolean',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'required' => 0,
'default' => 0,
'visible_on_front' => 1,
'used_for_price_rules' => 0,
'adminhtml_only' => 1,
)
);
$installer->endSetup();
上面的adminhtml_only
将为您处理所有used_in_forms
逻辑。此外,定义group
将负责将其分配给属性组。
答案 2 :(得分:4)
您可以通过以下脚本在自定义模块mysql安装文件中添加您的客户属性。
$installer = $this;
$installer->startSetup();
$installer->addAttribute("customer", "yourattributename", array(
"type" => "int",
"backend" => "",
"label" => "Bad Customer",
"input" => "select",
"source" => "eav/entity_attribute_source_boolean",
"visible" => true,
"required" => false,
"default" => "",
"frontend" => "",
"unique" => false,
"note" => ""
));
$attribute = Mage::getSingleton("eav/config")->getAttribute("customer", "yourattributename");
以下用于想要使用客户属性的脚本
$used_in_forms=array();
$used_in_forms[]="adminhtml_customer";
$attribute->setData("used_in_forms", $used_in_forms)
->setData("is_used_for_customer_segment", true)
->setData("is_system", 0)
->setData("is_user_defined", 1)
->setData("is_visible", 0)
->setData("sort_order", 100)
;
$attribute->save();
$installer->endSetup();
答案 3 :(得分:0)
alex和leek 提供的解决方案都适合我。 只有我必须在AccountController.php中添加setter函数
$customer->setProfession($this->getRequest()->getPost('profession'))
->save(); // Added for updating Profession
“职业”是我的自定义属性。