繁体   English   中英

如何在magento中为新的选择类型客户地址属性设置来源?

[英]How to set the source for a new select type customer address attribute in magento?

在这里,我尝试添加选择类型客户地址属性。 我可以使用数组设置选项值和标签吗?

$newAttributeName = "adt";

$attribute  = array(
'type'          => 'int',
'input'         => 'select',
'label'         => 'Ad TYPE',
'visible'       => true,
'required'      => true,
'user_defined'  => true,
'searchable'    => true,
'filterable'    => true,
'comparable'    => true,
'visible_on_front' => true,
'source' =>  

);

$setup = new Mage_Eav_Model_Entity_Setup('core_setup');

$setup->addAttribute('customer_address', $newAttributeName, $attribute);

有人可以帮我这个忙吗?

此页面上的某些信息可能有助于回答您的问题。 这与客户属性无关,但确实讨论了将下拉属性添加到产品中的问题,应该为您指明正确的方向。

设置产品的下拉选项值

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM