Come creare Magento 2 Attributo del prodotto a livello di codice con tipo: area di testo.
Come creare Magento 2 Attributo del prodotto a livello di codice con tipo: area di testo.
Risposte:
Panoramica sull'aggiunta di attributi di prodotto a livello di codice
InstallData.php
install()
metodoPassaggio 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.php
per 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.