So erstellen Sie ein Magento 2-Produktattribut programmgesteuert mit dem folgenden Typ: Textbereich.
So erstellen Sie ein Magento 2-Produktattribut programmgesteuert mit dem folgenden Typ: Textbereich.
Antworten:
Übersicht über das programmgesteuerte Hinzufügen von Produktattributen
InstallData.php
install()
MethodeSchritt 1: Datei erstellenInstallData.php
Wir beginnen mit der InstallData-Klasse, die sich in befindet
app/code/Mageplaza/HelloWorld/Setup/InstallData.php.
Der Inhalt für diese Datei:
<?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;
}
}
Schritt 2: Definieren Sie die install () -Methode
<?php
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
}
Schritt 3: Benutzerdefiniertes Attribut erstellen
Hier finden Sie alle Zeilen, InstallData.php
in denen das Produktattribut programmgesteuert erstellt werden soll.
<?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' => ''
]
);
}
}
Wie Sie sehen können, ist für die Methode addAttribute Folgendes erforderlich: Die Typ-ID der Entität, die das Attribut hinzufügen soll. Der Name des Attributs Ein Array von Schlüsselwertpaaren, um das Attribut zu definieren, z.
Alles erledigt, führen Sie bitte das Upgrade-Skript php bin / magento setup: upgrade aus, um das Modul zu installieren, und das Produktattribut sample_attribute wird erstellt.
Wenn Sie das Produktattribut entfernen möchten, können Sie die Methode removeAttribute anstelle von addAttribute verwenden. Es wird so sein:
BEARBEITEN:
zum deinstallieren erstelle die 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');
}
}
Sie können auch der folgenden URL folgen, um ein benutzerdefiniertes Produktattribut zu erstellen.