向客户实体添加属性

2022-08-30 12:49:46

我目前的目标是添加一个新的客户属性(带有类型),该属性应显示为具有预定义选项的select(从具有可在后端编辑的条目的模型中加载,已完成)。我正在努力正确使用方法,特别是指定正确的源选项。另一个问题是新属性未保存到表中eav_entity_attributeint$installer->addAttribute()

我使用的是Magento CE 1.5.1.0


答案 1

这是带有渲染器的基本属性的代码:inttext

$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();

添加属性的不寻常步骤是,这似乎是客户属性所独有的。没有它,该字段将无法呈现,当然也不会在adminhtml中呈现。您可以在数据库表中看到此数组的有效选项。setData('used_in_forms')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);

下面是有关为下拉列表使用自定义源的演练

希望这有帮助,
京东


答案 2

@乔纳森·戴的回答很好,对我帮助很大。但是 - 只要您将类设置为 ,则Magento就可以为您完成所有这些工作:setupMage_Customer_Model_Entity_Setup

<!-- 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_onlyused_in_formsgroup


推荐