Ab Magento 2.1 und der höheren Version können Sie das Blog auch zum programmgesteuerten Erstellen von Attributen in Detais verwenden, indem Sie in Magento 2 das Attribut Benutzerdefinierte Kategorie erstellen verwenden
Sie müssen nur unter Code im Inneren
For Magento Version 2.1.*
app / code / {Packagename} / {Modulename} /Setup/InstallData.php
<?php
namespace {Packagename}\{Modulename}\Setup;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Catalog\Setup\CategorySetupFactory;
class InstallData implements InstallDataInterface
{
/**
* Category setup factory
*
* @var CategorySetupFactory
*/
private $categorySetupFactory;
/**
* Init
*
* @param CategorySetupFactory $categorySetupFactory
*/
public function __construct(CategorySetupFactory $categorySetupFactory)
{
$this->categorySetupFactory = $categorySetupFactory;
}
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
$installer = $setup;
$installer->startSetup();
$categorySetup = $this->categorySetupFactory->create(['setup' => $setup]);
$entityTypeId = $categorySetup->getEntityTypeId(\Magento\Catalog\Model\Category::ENTITY);
$attributeSetId = $categorySetup->getDefaultAttributeSetId($entityTypeId);
$categorySetup->addAttribute(
\Magento\Catalog\Model\Category::ENTITY, 'custom_attribute', [
'type' => 'varchar',
'label' => 'Custom Attribute Description',
'input' => 'textarea',
'required' => false,
'sort_order' => 100,
'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE,
'group' => 'General Information',
'is_used_in_grid' => true,
'is_visible_in_grid' => false,
'is_filterable_in_grid' => true,
]
);
$installer->endSetup();
}
}
app / code / {Packagename} / {Modulname} /view/adminhtml/ui_component/category_form.xml
<?xml version="1.0" encoding="UTF-8"?>
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<fieldset name="general">
<field name="custom_attribute">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="sortOrder" xsi:type="number">50</item>
<item name="dataType" xsi:type="string">string</item>
<item name="formElement" xsi:type="string">input</item>
<item name="label" xsi:type="string" translate="true">Custom Attribute Name</item>
</item>
</argument>
</field>
</fieldset>
</form>
Dies ist eine ältere Version von Magento,
Für Magento Version 2.0. *
Stellen Sie das Kategorieattribut wie folgt ein:
app/code/Vendor/Categoryattr/Setup/InstallData.php
Datei,
<?php
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Vendor\CategoryAttribute\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;
/**
* Init
*
* @param EavSetupFactory $eavSetupFactory
*/
public function __construct(EavSetupFactory $eavSetupFactory)
{
$this->eavSetupFactory = $eavSetupFactory;
}
/**
* {@inheritdoc}
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
/** @var EavSetup $eavSetup */
$eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
/**
* Add attributes to the eav/attribute
*/
$eavSetup->addAttribute(
\Magento\Catalog\Model\Category::ENTITY,
'custom_attribute',
[
'type' => 'varchar',
'label' => 'Custom Attribute Description',
'input' => 'textarea',
'required' => false,
'sort_order' => 100,
'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE,
'group' => 'General Information',
'is_used_in_grid' => true,
'is_visible_in_grid' => false,
'is_filterable_in_grid' => true,
]
);
}
}
var/generation
Ordner entfernen und Befehl ausführen,
PHP Bin / Magento Setup: Upgrade auf Arbeiten innerhalb der Kategorie.
Ab Magento 2.1 müssen Sie auch UI-Komponenten erstellen, bevor das Feld in admin angezeigt wird.
Erstellen:
quelle
Mit dem folgenden Code können Sie ein Kategorieattribut hinzufügen:
Erstellen Sie in Ihrem Modul den Setup-Ordner und erstellen Sie darin die Datei InstallData.php
quelle
Gute Referenzen oben. Dieser hat für mich gut funktioniert, um ein Attribut für eine Kategorie zu erstellen. Ich habe das auf v2.0.6 getestet.
Es sollte in app / code / Vendor / Extension / Setup / InstallData.php abgelegt werden
In meinem Blog habe ich ein vollständiges Beispiel dafür geschrieben: http://blog.mdnsolutions.com/magento2-create-custom-category-attribute/
quelle
quelle