Magento-将自定义字段添加到客户配置文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento-将自定义字段添加到客户配置文件相关的知识,希望对你有一定的参考价值。
<?php $installer = $this; $installer->startSetup(); 'type' => 'int', 'input' => 'select', 'label' => 'School', 'global' => 1, 'visible' => 1, 'required' => 0, 'user_defined' => 1, 'default' => '0', 'visible_on_front' => 1, 'source'=> 'profile/entity_school', )); { $customer = Mage::getModel('customer/customer'); $attrSetId = $customer->getResource()->getEntityType()->getDefaultAttributeSetId(); $this->addAttributeToSet('customer', $attrSetId, 'General', 'school'); } { Mage::getSingleton('eav/config') ->getAttribute('customer', 'school') ->save(); } $installer->endSetup();
以上是关于Magento-将自定义字段添加到客户配置文件的主要内容,如果未能解决你的问题,请参考以下文章
Magento在admin中将自定义输入字段添加到客户帐户窗体
Netsuite API - PHP将自定义字段附加到新客户