Введіть екземпляр \Magento\Catalog\Model\Product\Attribute\Repository
у свій конструктор (у блоці, довідковому класі чи де завгодно):
/**
* @var \Magento\Catalog\Model\Product\Attribute\Repository $_productAttributeRepository
*/
protected $_productAttributeRepository;
/**
* ...
* @param \Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository
* ...
*/
public function __construct(
...
\Magento\Catalog\Model\Product\Attribute\Repository $productAttributeRepository,
...
) {
...
$this->_productAttributeRepository = $productAttributeRepository;
...
}
Потім створіть у своєму класі метод отримання атрибута за кодом:
/**
* Get single product attribute data
*
* @return Magento\Catalog\Api\Data\ProductAttributeInterface
*/
public function getProductAttributeByCode($code)
{
$attribute = $this->_productAttributeRepository->get($code);
return $attribute;
}
Потім ви можете назвати цей метод так, наприклад, всередині .phtml-файлу
$attrTest = $block->getProductAttributeByCode('test');
Тоді ви можете робити дзвінки по об’єкту атрибута, наприклад
- Отримати варіанти:
$attribute->getOptions()
- Отримайте ярлик для фронтену для кожного магазину:
$attrTest->getFrontendLabels()
- Налагодження масиву даних:
echo '> ' . print_r($attrTest->debug(), true);
налагодження: Array ([attribute_id] => 274 [entit_type_id] => 4 [атрибут_код] => product_manual_download_label [backend_type] => varchar [frontend_input] => текст [frontend_label] => Етикетка завантаження керівництва продукту [is_required] => 0 [ is_user_defined] => 1 [default_value] => Завантажити посібник із продукту [is_unique] => 0 [is_global] => 0 [is_visible] => 1 [is_searchable] => 0 [is_filterable] => 0 [is_comparable] => 0 [ is_visible_on_front] => 0 [is_html_allowed_on_front] => 1 [is_used_for_price_rules] => 0 [is_filterable_in_search] => 0 [used_in_product_listing] => 0 [used_for_sort_by] => 0 [is_visible_in_in_ad_arch]0 [is_wysiwyg_enabled] => 0 [is_used_for_promo_rules] => 0 [is_required_in_admin_store] => 0 [is_used_in_grid] => 1 [is_visible_in_grid] => 1 [is_filterable_in_grid] => 1 [пошук_ ваги]