Wir können verwenden \Magento\Eav\Api\AttributeSetRepositoryInterface
, um den Attributsatznamen zu erhalten.
Detailseite
Wir müssen den \Magento\Catalog\Block\Product\View
Block überschreiben . Injizieren Sie diese Klasse in den Konstruktor
/** @var \Magento\Eav\Api\AttributeSetRepositoryInterface $attributeSet **/
protected $attributeSet;
public function __construct(
......
\Magento\Eav\Api\AttributeSetRepositoryInterface $attributeSet
......
) {
......
$this->attributeSet = $attributeSet;
}
//Build method to get attribute set
public function getAttributeSetName() {
$product = $this->getProduct();
$attributeSetRepository = $this->attributeSet->get($product->getAttributeSetId());
return $attributeSetRepository->getAttributeSetName();
}
Jetzt können wir die Produktdetailseite aufrufen: $block->getAttributeSetName();
Listingseite
Wir müssen den \Magento\Catalog\Block\Product\ListProduct
Block überschreiben
/** @var \Magento\Eav\Api\AttributeSetRepositoryInterface $attributeSet **/
protected $attributeSet;
public function __construct(
......
\Magento\Eav\Api\AttributeSetRepositoryInterface $attributeSet
......
) {
......
$this->attributeSet = $attributeSet;
}
public function getAttributeSetName($product) {
$attributeSetRepository = $this->attributeSet->get($product->getAttributeSetId());
return $attributeSetRepository->getAttributeSetName();
}
Wir können anrufen $block->getAttributeSetName($_product)
.