Как программно добавить атрибут категории в Magento 2
Создать файл InstallData.php
Мы начнем с класса InstallData, который находится в app / code / Mageplaza / HelloWorld / Setup / InstallData.php. Содержание для этого файла:
<?php
namespace Mageplaza\HelloWorld\Setup;
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;
}
}
Определите метод install ()
<?php
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
}
Создайте атрибут категории программно
<?php
namespace Mageplaza\HelloWorld\Setup;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Eav\Setup\EavSetupFactory;
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\Category::ENTITY,
'mp_new_attribute',
[
'type' => 'varchar',
'label' => 'Mageplaza Attribute',
'input' => 'text',
'sort_order' => 100,
'source' => '',
'global' => 1,
'visible' => true,
'required' => false,
'user_defined' => false,
'default' => null,
'group' => '',
'backend' => ''
]
);
}
}
Показать атрибут категории
Компонент пользовательского интерфейса категории отображается с конфигурацией из файла category_form.xml. Все файлы с таким именем объединяются. В результате мы добавим поле, создав файл category_form.xml в каталоге app / code / Mageplaza / HelloWorld / view / adminhtml / ui_component /.
Вот полный пример добавления поля в «общую» группу. Важно отметить, что mp_new_attribute должен соответствовать идентификатору атрибута, который вы создали в сценарии установки.
<?xml version="1.0" ?>
<form xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<fieldset name="general">
<field name="mp_new_attribute">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="required" xsi:type="boolean">false</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">false</item>
</item>
<item name="sortOrder" xsi:type="number">333</item>
<item name="dataType" xsi:type="string">string</item>
<item name="formElement" xsi:type="string">input</item>
<item name="label" translate="true" xsi:type="string">Mageplaza new attribute</item>
</item>
</argument>
</field>
</fieldset>
</form>
Все готово, пожалуйста, запустите обновление, очистите кэш и проверьте результат.
- Flush Cache Запустите очистить кеш здесь
- Запустите обновление командной строки:
Затем перейдите к продукту> категории от администратора, чтобы проверить результат.
Результатом будет текстовое поле:
статья взята с сайта: https://www.mageplaza.com/