Magento 2: aggiungi l'attributo del prodotto a livello di codice


Risposte:


34

Panoramica sull'aggiunta di attributi di prodotto a livello di codice

  • Passaggio 1: crea il file InstallData.php
  • Passaggio 2: definire il install() metodo
  • Passaggio 3: creare un attributo personalizzato

Passaggio 1: crea il fileInstallData.php

Inizieremo con la classe InstallData che si trova in

app/code/Mageplaza/HelloWorld/Setup/InstallData.php. 

Il contenuto di questo file:

<?php
namespace Mageplaza\HelloWorld\Setup;

use Magento\Eav\Setup\EavSetup;
use Magento\Eav\Setup\EavSetupFactory;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;

class InstallData implements InstallDataInterface
{
    private $eavSetupFactory;

    public function __construct(EavSetupFactory $eavSetupFactory)
    {
        $this->eavSetupFactory = $eavSetupFactory;
    }

}

Passaggio 2: definire il metodo install ()

<?php

public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{

}

Passaggio 3: Creare un attributo personalizzato Ecco qui tutte le righe di codice InstallData.phpper creare un attributo del prodotto a livello di codice .

<?php
namespace Mageplaza\HelloWorld\Setup;

use Magento\Eav\Setup\EavSetup;
use Magento\Eav\Setup\EavSetupFactory;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;

class InstallData implements InstallDataInterface
{
    private $eavSetupFactory;

    public function __construct(EavSetupFactory $eavSetupFactory)
    {
        $this->eavSetupFactory = $eavSetupFactory;
    }

    public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
    {
        $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
        $eavSetup->addAttribute(
            \Magento\Catalog\Model\Product::ENTITY,
            'sample_attribute',
            [
                'type' => 'int',
                'backend' => '',
                'frontend' => '',
                'label' => 'Sample Atrribute',
                'input' => '',
                'class' => '',
                'source' => '',
                'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_GLOBAL,
                'visible' => true,
                'required' => true,
                'user_defined' => false,
                'default' => '',
                'searchable' => false,
                'filterable' => false,
                'comparable' => false,
                'visible_on_front' => false,
                'used_in_product_listing' => true,
                'unique' => false,
                'apply_to' => ''
            ]
        );
    }
}

Come puoi vedere, tutto il metodo addAttribute richiesto è: L'id tipo dell'entità a cui vogliamo aggiungere l'attributo Il nome dell'attributo Una matrice di coppie di valori-chiave per definire l'attributo come gruppo, tipo di input, sorgente, etichetta ...

Tutto fatto, esegui lo script di aggiornamento php bin / magento setup: aggiorna per installare il modulo e verrà creato l'attributo product sample_attribute.

Se si desidera rimuovere l'attributo del prodotto, è possibile utilizzare il metodo removeAttribute anziché addAttribute. Sarà così:

MODIFICARE:

per disinstallare creare l'app / code / Mageplaza / HelloWorld / Setup / Uninstall.php.

<?php
namespace Mageplaza\HelloWorld\Setup;

use Magento\Eav\Setup\EavSetupFactory;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\SchemaSetupInterface;
use Magento\Framework\Setup\UninstallInterface;

class Uninstall implements UninstallInterface
{
    private $eavSetupFactory;

    public function __construct(EavSetupFactory $eavSetupFactory)
    {
        $this->eavSetupFactory = $eavSetupFactory;
    }

    public function uninstall(SchemaSetupInterface $setup, ModuleContextInterface $context)
    {
        $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
        $eavSetup->removeAttribute(
            \Magento\Catalog\Model\Product::ENTITY,
            'sample_attribute');
    }
}

Inoltre puoi seguire l'URL seguente per creare l'attributo del prodotto personalizzato.

URL: https://www.mageplaza.com/magento-2-module-development/magento-2-add-product-attribute-programmatical.html


Voglio creare un attributo di caricamento file. Quali cambiamenti devo fare? guida gentile
effimero

@ephemeral puoi cambiare il valore di 'input' => '', puoi leggerlo qui: magento.stackexchange.com/a/116829/2694
Andhi Irawan

Devo sostituire "int" con? su questo link non ho trovato il file upload :(
effimero

Come suggerimento speciale, non lasciare vuoto il campo 'input' => ''. Si verificherà un errore. magento.stackexchange.com/questions/204420/…
ZFNerd

ciao @Prakash Patel, senza programma di installazione possiamo creare l'attributo del prodotto?
jafar pinjar
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.