Cách tạo thuộc tính khách hàng magento 2 để nó hoạt động trong khi chạy tập lệnh mà không cần cài đặt tập lệnh: -
/**
* @var \Magento\Eav\Setup\EavSetupFactory
*/
protected $eavEavSetupFactory;
public function __construct(
...
\Magento\Eav\Setup\EavSetupFactory $eavEavSetupFactory,
...
)
{
...
$this->eavEavSetupFactory = $eavEavSetupFactory;
...
}
public function createOrUpdateCustomerUDA($value, $input, $type)
{
/** @var CustomerSetup $customerSetup */
$customerSetup = $this->eavEavSetupFactory->create(['setup' => $setup]);
$customerEntity = $customerSetup->getEavConfig()->getEntityType('customer');
$attributeSetId = $customerEntity->getDefaultAttributeSetId();
/** @var $attributeSet AttributeSet */
$attributeSet = $this->attributeSetFactory->create();
$attributeGroupId = $attributeSet->getDefaultGroupId($attributeSetId);
$customerSetup->addAttribute(Customer::ENTITY, $value, [
'type' => $type,
'label' => $value,
'input' => $input,
'required' => false,
'visible' => true,
'user_defined' => true,
'sort_order' => 1000,
'position' => 1000,
'system' => 0,
]);
//add attribute to attribute set
$attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, $value)
->addData([
'attribute_set_id' => $attributeSetId,
'attribute_group_id' => $attributeGroupId,
'used_in_forms' => ['adminhtml_customer'],
]);
$attribute->save();
}
Tôi đang sử dụng chức năng này trong mô-đun tùy chỉnh của mình để tạo các thuộc tính khách hàng, nhưng nó gây ra lỗi dưới đây, tôi có thể hướng dẫn tôi cách vượt qua $setup
chức năng này để nó hoạt động tốt: -
Parse error: syntax error, unexpected '$setup' (T_VARIABLE), expecting ',' or ')' in Customer.php on line 540
1
Tôi nghĩ rằng không cần phải chuyển ['setup' => $ setup] cho nhà máy. Chỉ cần loại bỏ nó và mọi thứ sẽ ổn.
—
Andrey Konosov
Sau khi xóa ['setup' => $ setup], lỗi bên dưới: -
—
Purushotam Sharma
Uncaught TypeError: Argument 1 passed to Magento\Setup\Module\DataSetup::__construct()
Magento\Framework\Setup\ModuleDataSetupInterface
Bạn có thể thử tải cái này trong cấu trúc và chuyển tham chiếu của nó làm đối số cho đối số thiết lập không
@Pankaj sau khi đặt lỗi nhận phụ thuộc cấu trúc: - Uncaught TypeError: Đối số 1 được chuyển cho Magento \ Setup \ Module \ DataSetup :: __ construc ()
—
Purushotam Sharma