Magento 2 - Como criar um atributo de produto e atribuir todo o conjunto de atributos usando o script de instalação?
7
Por padrão, se você fornecer um valor para 'group' na matriz de configuração de atributos, o atributo será adicionado a esse grupo em todos os conjuntos de atributos:
$eavSetup->addAttribute('catalog_product', 'my_attribute', [
...
'group' => 'General', // or some other group name
...
]);
Isso pode ser útil: -
Crie InstallData.php na sua pasta Setup e cole este código no seu arquivo
<?php
namespace [Vendor]\[Module]\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)
{
/** @var EavSetup $eavSetup */
$eavSetup = $this->eavSetupFactory->create(['setup' => $setup]);
/**
* Add attributes to the eav/attribute
*/
$eavSetup->removeAttribute(\Magento\Catalog\Model\Product::ENTITY,'background_image');
$eavSetup->addAttribute(
\Magento\Catalog\Model\Product::ENTITY,
'background_image',/* Custom Attribute Code */
[
'type' => 'varchar',/* Data type in which formate your value save in database*/
'backend' => '',
'frontend' => '',
'label' => 'Background Image', /* lablel of your attribute*/
'input' => 'media_image',
'class' => '',
'source' => '',
/* Source of your select type custom attribute options*/
'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE,
/*Scope of your attribute */
'visible' => false,
'required' => false,
'user_defined' => false,
'default' => '',
'searchable' => false,
'filterable' => false,
'comparable' => false,
'visible_on_front' => false,
'used_in_product_listing' => false,
'unique' => false
]
);
$entityTypeId = $eavSetup->getEntityTypeId(\Magento\Catalog\Model\Product::ENTITY);
$attributeSetIds = $eavSetup->getAllAttributeSetIds($entityTypeId);
foreach ($attributeSetIds as $attributeSetId) {
/**
* getAttributeGroupId($entityTypeId, $attributeSetId, "Group_Code");
*
*/
$groupId = $eavSetup->getAttributeGroupId($entityTypeId, $attributeSetId, "image-management");
$eavSetup->addAttributeToGroup(
$entityTypeId,
$attributeSetId,
$groupId,
'background_image',
null
);
}
}
}
Aqui está o script pelo qual você pode adicionar atributo a todos os conjuntos de atributos.
Etapa 1: -Crie InstallData.php na sua pasta Setup e cole esse código no seu arquivo.
Entre em contato se tiver alguma dúvida sobre isso. remova o espaço extra, se necessário.
fonte