Magento 2 Ürün Özniteliği Programlı olarak şu tür ile nasıl oluşturulur: Metin Alanı.
Magento 2 Ürün Özniteliği Programlı olarak şu tür ile nasıl oluşturulur: Metin Alanı.
Yanıtlar:
Programlı olarak Ürün Özelliği Eklemeye Genel Bakış
InstallData.php
install()
Yöntemi tanımlayın1. 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.