\Magento\Catalog\Model\Product\Attribute\Repository
Oluşturucunuza bir örneğini enjekte edin (bir blokta, yardımcı sınıfta veya herhangi bir yerde):
/**
* @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;
...
}
Ardından, özniteliği koda göre almak için sınıfınızda bir yöntem oluşturun:
/**
* Get single product attribute data
*
* @return Magento\Catalog\Api\Data\ProductAttributeInterface
*/
public function getProductAttributeByCode($code)
{
$attribute = $this->_productAttributeRepository->get($code);
return $attribute;
}
Daha sonra bu yöntemi şöyle çağırabilirsiniz, örneğin .phtml dosyası içinde
$attrTest = $block->getProductAttributeByCode('test');
Ardından, öznitelik nesnesini arayabilirsiniz;
- Seçenekleri alın:
$attribute->getOptions()
- Her mağaza için ön uç etiketi alın:
$attrTest->getFrontendLabels()
- Veri dizisinde hata ayıklama:
echo '> ' . print_r($attrTest->debug(), true);
debug: Dizi ([attribute_id] => 274 [entity_type_id] => 4 [attribute_code] => product_manual_download_label [backend_type] => varchar [frontend_input] => text [frontend_label] => Ürün Kılavuzu İndirme Etiketi [is_required] => 0 [ is_user_defined] => 1 [default_value] => Ürün Kılavuzu İndir [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 [kullanılmış_in_product_listing] => 0 [kullanılmış_for_sort_by] => 0 [is_visible_] = 0_vanced =]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_fil_rable_in_grid] => 1 [arama_ağırlığı] = 1]