Magento 2: Ürün Özelliklerini Programlı Olarak Ekleme


Yanıtlar:


34

Programlı olarak Ürün Özelliği Eklemeye Genel Bakış

  • 1. Adım: Dosya oluşturma InstallData.php
  • 2. Adım: install() Yöntemi tanımlayın
  • 3. Adım: Özel özellik oluşturma

1. Adım: Dosya oluşturmaInstallData.php

Bulunan InstallData sınıfıyla başlayacağız

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

Bu dosyanın içeriği:

<?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. Adım: install () yöntemini tanımlayın

<?php

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

}

3. Adım: Özel özellikInstallData.php oluşturma Programlı olarak ürün özelliği oluşturmak için kullanılan tüm satır kodları .

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

Gördüğünüz gibi, tüm addAttribute yöntemi gerektirir: Öznitelik eklemek istediğimiz varlığın tür kimliği Özniteliğin adı Grup, girdi türü, kaynak, etiket… gibi özniteliği tanımlamak için anahtar değer çiftleri dizisi.

Hepsi bitti, lütfen yükseltme komut dosyasını çalıştırın php bin / magento setup: modülü yüklemek için yükseltme ve sample_attribute ürün özniteliği oluşturulacaktır.

Ürün niteliğini kaldırmak istiyorsanız, addAttribute yerine removeAttribute yöntemini kullanabilirsiniz. Bu şekilde olacak:

DÜZENLE:

kaldırmak için app / code / Mageplaza / HelloWorld / Setup / Uninstall.php dosyasını oluşturun.

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

Ayrıca, özel ürün özelliği oluşturmak için aşağıdaki URL'yi takip edebilirsiniz.

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


Bir dosya yükleme özelliği oluşturmak istiyorum. Ne tür değişiklikler yapmam gerekiyor? lütfen rehber
geçici

@ephemeral 'input' => '' değerini değiştirebilirsiniz, buradan okuyabilirsiniz: magento.stackexchange.com/a/116829/2694
Andhi Irawan

'İnt' yerine? Bu bağlantıda dosya yüklemek için bulamadım :(
ephemeral

Özel bir ipucu olarak, 'input' => '' alanını boş bırakmayın. Bir hataya neden olur. magento.stackexchange.com/questions/204420/…
ZFNerd

merhaba @Prakash Patel, yükleyici olmadan ürün özelliğini oluşturabilir miyiz?
jafar pinjar
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.