如何在Magento 2.2上的客户注册中添加自定义字段?

时间:2018-02-05 06:53:05

标签: php magento registration custom-fields magento2.2

  1. 我想在Magento 2.2上的客户注册中添加自定义字段
  2. 我尝试过以下代码,但它无效。
  3. 我尝试过InstallData.php

      use Magento\Customer\Setup\CustomerSetupFactory;
      use Magento\Customer\Model\Customer;
      use Magento\Eav\Model\Entity\Attribute\Set as AttributeSet;
      use Magento\Eav\Model\Entity\Attribute\SetFactory as AttributeSetFactory;
      use Magento\Framework\Setup\InstallDataInterface;
      use Magento\Framework\Setup\ModuleContextInterface;
      use Magento\Framework\Setup\ModuleDataSetupInterface;
    
      class InstallData implements InstallDataInterface
      {
          protected $customerSetupFactory;
    
          private $attributeSetFactory;
    
          public function __construct(CustomerSetupFactory $customerSetupFactory, AttributeSetFactory $attributeSetFactory)
          {
              $this->customerSetupFactory = $customerSetupFactory;
              $this->attributeSetFactory = $attributeSetFactory;
          }
    
          public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
          {
    
              $customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);
    
              $customerEntity = $customerSetup->getEavConfig()->getEntityType('customer');
              $attributeSetId = $customerEntity->getDefaultAttributeSetId();
    
              $attributeSet = $this->attributeSetFactory->create();
              $attributeGroupId = $attributeSet->getDefaultGroupId($attributeSetId);
              $customerSetup->addAttribute(Customer::ENTITY, 'intrestedin', [
                  'type' => 'varchar',
                  'label' => 'Custom Field',
                  'input' => 'text',
                  'required' => true,
                  'visible' => true,
                  'user_defined' => true,
                  'sort_order' => 1000,
                  'position' => 1000,
                  'system' => 0,
              ]);
              $attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'mobile_number')
                  ->addData([
                      'attribute_set_id' => $attributeSetId,
                      'attribute_group_id' => $attributeGroupId,
                      'used_in_forms' => ['adminhtml_customer', 'customer_account_create'],
                  ]);
    
              $attribute->save();
          }
      }
    

1 个答案:

答案 0 :(得分:0)

请尝试创建模块并添加客户属性。你可以从这里创建模块 - https://mage2gen.com/

安装模块后,您可以运行setup upgrade和deploy命令。