2
Magento 2: Erstellen Sie Kundenattribute programmgesteuert ohne Installationsskript
So erstellen Sie Kundenattribute magento 2, damit es beim Ausführen eines Skripts ohne Installationsskript funktioniert: - /** * @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 …