如何使用数据补丁magento 2创建profile image customer属性?



我需要创建客户配置文件图像属性。任何人都可以请帮助我如何创建客户配置文件图像属性。我需要在自定义模块中创建自定义属性,我正在使用数据补丁文件。

public function apply()
{
$this->moduleDataSetup->getConnection()->startSetup();
/** @var CustomerSetup $customerSetup */
$customerSetup = $this->customerSetupFactory->create(['setup' => $this->moduleDataSetup]);
$customerEntity = $customerSetup->getEavConfig()->getEntityType(Customer::ENTITY);
$attributeSetId = $customerEntity->getDefaultAttributeSetId();

/** @var $attributeSet Set */
$attributeSet = $this->attributeSetFactory->create();
$attributeGroupId = $attributeSet->getDefaultGroupId($attributeSetId);

$customerSetup->addAttribute(
Customer::ENTITY,
'profile_image',
[
'label' => 'Profile Image',
'input' => 'text',
'type' => 'file',
'source' => '',
'required' => true,
'position' => 333,
'visible' => true,
'system' => false,
'is_used_in_grid' => true,
'is_visible_in_grid' => true,
'is_filterable_in_grid' => true,
'is_searchable_in_grid' => false,
'backend' => ''
]
);

$attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'profile_image');
$attribute->addData([
'used_in_forms' => [
'adminhtml_customer',
'adminhtml_checkout',
'customer_account_create',
'customer_account_edit'
]
]);
$attribute->addData([
'attribute_set_id' => $attributeSetId,
'attribute_group_id' => $attributeGroupId

]);
$attribute->save();
$this->moduleDataSetup->getConnection()->endSetup();
}

当我执行s:up命令时,它会显示"无效的列数据类型文件";错误。请让我知道我该如何解决这个问题。

'type'必须为以下参数之一:
datetimedecimalinttextvarchar


这些选项对应于customer_entity_*

数据库表。另外,客户属性没有标准的文件'input'字段。您需要实现该字段输入类型。

相关内容

  • 没有找到相关文章

最新更新