Magento 2:プログラムによる製品属性の追加


回答:


34

プログラムによる製品属性の追加の概要

  • ステップ1:ファイルを作成する InstallData.php
  • ステップ2:install() メソッドを定義する
  • ステップ3:カスタム属性を作成する

ステップ1:ファイルを作成するInstallData.php

次の場所にあるInstallDataクラスから始めます。

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

このファイルの内容:

<?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;
    }

}

ステップ2:install()メソッドを定義する

<?php

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

}

ステップ3:カスタム属性InstallData.phpを作成するこれは、製品属性をプログラムで作成するための すべての行コードです。

<?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' => ''
            ]
        );
    }
}

ご覧のとおり、addAttributeメソッドに必要なのは次のとおりです。属性を追加するエンティティのタイプID属性の名前グループ、入力タイプ、ソース、ラベルなどの属性を定義するキーと値のペアの配列…

すべて完了したら、アップグレードスクリプトphp bin / magento setup:upgradeを実行してモジュールをインストールすると、製品属性sample_attributeが作成されます。

製品属性を削除する場合は、addAttributeの代わりにremoveAttributeメソッドを使用できます。次のようになります。

編集:

アンインストールするには、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');
    }
}

また、以下のカスタム製品属性を作成するためのURLに従うことができます。

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


ファイルアップロード属性を作成します。どのような変更が必要ですか?親切なガイド
短命

@ephemeral、「input」の値を変更できます=> ''、ここで読むことができます:magento.stackexchange.com/a/116829/2694
Irawan

「int」を「?」に置き換える必要がありますか?このリンクでは、ファイルのアップロードが見つかりませんでした:(
一時的な

特別なヒントとして、フィールド 'input' => ''を空白にしないでください。エラーが発生します。magento.stackexchange.com/questions/204420/...
ZFNerd

こんにちは、@ Prakash Patel、インストーラーなしで製品属性を作成できますか?
jafarピンジャー
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.