Как правильно (официальный) способ программно добавить атрибут продукта в M2? Например, для manufacturer
атрибута продукта. Очевидно, существующая опция будет соответствовать значению заголовка «Admin».
32
Вот подход, который я придумал для обработки параметров атрибута. Хелпер класс:
<?php
namespace My\Module\Helper;
class Data extends \Magento\Framework\App\Helper\AbstractHelper
{
/**
* @var \Magento\Catalog\Api\ProductAttributeRepositoryInterface
*/
protected $attributeRepository;
/**
* @var array
*/
protected $attributeValues;
/**
* @var \Magento\Eav\Model\Entity\Attribute\Source\TableFactory
*/
protected $tableFactory;
/**
* @var \Magento\Eav\Api\AttributeOptionManagementInterface
*/
protected $attributeOptionManagement;
/**
* @var \Magento\Eav\Api\Data\AttributeOptionLabelInterfaceFactory
*/
protected $optionLabelFactory;
/**
* @var \Magento\Eav\Api\Data\AttributeOptionInterfaceFactory
*/
protected $optionFactory;
/**
* Data constructor.
*
* @param \Magento\Framework\App\Helper\Context $context
* @param \Magento\Catalog\Api\ProductAttributeRepositoryInterface $attributeRepository
* @param \Magento\Eav\Model\Entity\Attribute\Source\TableFactory $tableFactory
* @param \Magento\Eav\Api\AttributeOptionManagementInterface $attributeOptionManagement
* @param \Magento\Eav\Api\Data\AttributeOptionLabelInterfaceFactory $optionLabelFactory
* @param \Magento\Eav\Api\Data\AttributeOptionInterfaceFactory $optionFactory
*/
public function __construct(
\Magento\Framework\App\Helper\Context $context,
\Magento\Catalog\Api\ProductAttributeRepositoryInterface $attributeRepository,
\Magento\Eav\Model\Entity\Attribute\Source\TableFactory $tableFactory,
\Magento\Eav\Api\AttributeOptionManagementInterface $attributeOptionManagement,
\Magento\Eav\Api\Data\AttributeOptionLabelInterfaceFactory $optionLabelFactory,
\Magento\Eav\Api\Data\AttributeOptionInterfaceFactory $optionFactory
) {
parent::__construct($context);
$this->attributeRepository = $attributeRepository;
$this->tableFactory = $tableFactory;
$this->attributeOptionManagement = $attributeOptionManagement;
$this->optionLabelFactory = $optionLabelFactory;
$this->optionFactory = $optionFactory;
}
/**
* Get attribute by code.
*
* @param string $attributeCode
* @return \Magento\Catalog\Api\Data\ProductAttributeInterface
*/
public function getAttribute($attributeCode)
{
return $this->attributeRepository->get($attributeCode);
}
/**
* Find or create a matching attribute option
*
* @param string $attributeCode Attribute the option should exist in
* @param string $label Label to find or add
* @return int
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function createOrGetId($attributeCode, $label)
{
if (strlen($label) < 1) {
throw new \Magento\Framework\Exception\LocalizedException(
__('Label for %1 must not be empty.', $attributeCode)
);
}
// Does it already exist?
$optionId = $this->getOptionId($attributeCode, $label);
if (!$optionId) {
// If no, add it.
/** @var \Magento\Eav\Model\Entity\Attribute\OptionLabel $optionLabel */
$optionLabel = $this->optionLabelFactory->create();
$optionLabel->setStoreId(0);
$optionLabel->setLabel($label);
$option = $this->optionFactory->create();
$option->setLabel($optionLabel);
$option->setStoreLabels([$optionLabel]);
$option->setSortOrder(0);
$option->setIsDefault(false);
$this->attributeOptionManagement->add(
\Magento\Catalog\Model\Product::ENTITY,
$this->getAttribute($attributeCode)->getAttributeId(),
$option
);
// Get the inserted ID. Should be returned from the installer, but it isn't.
$optionId = $this->getOptionId($attributeCode, $label, true);
}
return $optionId;
}
/**
* Find the ID of an option matching $label, if any.
*
* @param string $attributeCode Attribute code
* @param string $label Label to find
* @param bool $force If true, will fetch the options even if they're already cached.
* @return int|false
*/
public function getOptionId($attributeCode, $label, $force = false)
{
/** @var \Magento\Catalog\Model\ResourceModel\Eav\Attribute $attribute */
$attribute = $this->getAttribute($attributeCode);
// Build option array if necessary
if ($force === true || !isset($this->attributeValues[ $attribute->getAttributeId() ])) {
$this->attributeValues[ $attribute->getAttributeId() ] = [];
// We have to generate a new sourceModel instance each time through to prevent it from
// referencing its _options cache. No other way to get it to pick up newly-added values.
/** @var \Magento\Eav\Model\Entity\Attribute\Source\Table $sourceModel */
$sourceModel = $this->tableFactory->create();
$sourceModel->setAttribute($attribute);
foreach ($sourceModel->getAllOptions() as $option) {
$this->attributeValues[ $attribute->getAttributeId() ][ $option['label'] ] = $option['value'];
}
}
// Return option ID if exists
if (isset($this->attributeValues[ $attribute->getAttributeId() ][ $label ])) {
return $this->attributeValues[ $attribute->getAttributeId() ][ $label ];
}
// Return false if does not exist
return false;
}
}
Затем, либо в том же классе, либо включив его через внедрение зависимостей, вы можете добавить или получить свой идентификатор опции с помощью вызова createOrGetId($attributeCode, $label)
.
Например, если вы вводите My\Module\Helper\Data
как $this->moduleHelper
, то вы можете позвонить:
$manufacturerId = $this->moduleHelper->createOrGetId('manufacturer', 'ABC Corp');
Если «ABC Corp» является существующим производителем, он получит идентификатор. Если нет, он добавит его.
ОБНОВЛЕНО 2016-09-09: Per Ruud N., оригинальное решение использовало CatalogSetup, что привело к ошибке, начинающейся в Magento 2.1. Это пересмотренное решение обходит эту модель, создавая опцию и явно помечая. Должно работать на 2.0+.
Magento\Eav\Model\ResourceModel\Entity\Attribute::_processAttributeOptions
. Убедитесь сами: если вы удалите$option->setValue($label);
оператор из своего кода, он сохранит параметр, а затем, когда вы его получите, Magento вернет значение изeav_attribute_option
таблицы с автоматическим приращением .проверено на Magento 2.1.3.
Я не нашел работоспособного способа создать атрибут с опциями сразу. Поэтому сначала нам нужно создать атрибут, а затем добавить параметры для него.
Вставьте следующий класс \ Magento \ Eav \ Setup \ EavSetupFactory
Создать новый атрибут:
Добавить пользовательские параметры.
Функция
addAttribute
не возвращает ничего полезного, что может быть использовано в будущем. Таким образом, после создания атрибута нам нужно самостоятельно извлечь объект атрибута. !!! Важно Нам это нужно, потому что функция ожидает толькоattribute_id
, но не хочет работатьattribute_code
.В этом случае нам нужно получить
attribute_id
и передать его в функцию создания атрибутов.Затем нам нужно сгенерировать массив параметров так, как ожидает magento:
Как пример:
И передать его функции:
источник
Использование Magento \ Eav \ Setup \ EavSetupFactory или даже класса \ Magento \ Catalog \ Setup \ CategorySetupFactory может привести к следующей проблеме: https://github.com/magento/magento2/issues/4896 .
Классы, которые вы должны использовать:
Затем в вашей функции сделайте что-то вроде этого:
источник
$attributeOptionLabel
и$option
являются классами ORM; Вы не должны вводить их напрямую. Правильный подход состоит в том, чтобы внедрить их фабричный класс, а затем создать экземпляр по мере необходимости. Также обратите внимание, что вы не используете интерфейсы данных API постоянно.$option->setValue()
поскольку это для внутреннегоoption_id
поля magento наeav_attribute_option
столе.Для Magento 2.3.3 я обнаружил, что вы можете использовать подход Magento DevTeam.
Добавить атрибут в функцию apply ()
источник
Это НЕ ответ. Просто обходной путь.
Предполагается, что у вас есть доступ к Magento Backend с помощью браузера, и вы находитесь на странице редактирования атрибута (URL выглядит как admin / catalog / product_attribute / edit / attribute_id / XXX / key ..)
Перейдите в консоль браузера (CTRL + SHIFT + J на Chrome) и вставьте следующий код после изменения mimim массива .
- проверено на Magento 2.2.2
Подробная статья - https://tutes.in/how-to-manage-magento-2-product-attribute-values-options-using-console/
источник