php 在Magento 2中创建客户属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在Magento 2中创建客户属性相关的知识,希望对你有一定的参考价值。

class InstallData implements InstallDataInterface
{
  public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
  {
    /** @var CustomerSetup $customerSetup */
    $customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);
  
    $customerEntity = $customerSetup->getEavConfig()->getEntityType('customer');
    $attributeSetId = $customerEntity->getDefaultAttributeSetId();
  
    /** @var $attributeSet AttributeSet */
    $attributeSet = $this->attributeSetFactory->create();
    $attributeGroupId = $attributeSet->getDefaultGroupId($attributeSetId);
    
    $customerSetup->addAttribute(
    \Magento\Customer\Model\Customer::ENTITY,
    'attribute_name',
    [
        'type' => 'int',
        'label' => 'Attribute Name',
        'input' => 'select',
        'source' => 'Magento\Eav\Model\Entity\Attribute\Source\Boolean',
        'required' => false,
        'default' => '0',
        'sort_order' => 100,
        'system' => false,
        'position' => 100
    ]
    );
    
    $attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'attribute_name')
      ->addData([
          'attribute_set_id' => $attributeSetId,
          'attribute_group_id' => $attributeGroupId,
          'used_in_forms' => ['adminhtml_customer','customer_account_edit'],
      ]);
    
    $attribute->save();
  }
}

以上是关于php 在Magento 2中创建客户属性的主要内容,如果未能解决你的问题,请参考以下文章

php 在Magento 2中创建客户属性

php 在Magento 2控制器中创建面包屑

在 magento 1.9.2 中创建自定义顶部菜单

xml 在Magento中创建模块2.来源:https://magenticians.com/create-module-in-magento-2/

单击下拉选项 magento 1.7.0.2 在管理面板中创建网格

从 customer_entity_varchar 获取价值 - Magento