Come possiamo recuperare il nome del set di attributi per un prodotto. Voglio usarlo sui dettagli del prodotto e sulla pagina di elenco .
Come possiamo recuperare il nome del set di attributi per un prodotto. Voglio usarlo sui dettagli del prodotto e sulla pagina di elenco .
Risposte:
Possiamo usare \Magento\Eav\Api\AttributeSetRepositoryInterface
per ottenere il nome del set di attributi.
Dobbiamo scavalcare il \Magento\Catalog\Block\Product\View
blocco. Iniettare questa classe sul costruttore
/** @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();
}
Ora possiamo chiamare nella pagina dei dettagli del prodotto: $block->getAttributeSetName();
Dobbiamo scavalcare il \Magento\Catalog\Block\Product\ListProduct
blocco
/** @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();
}
Possiamo chiamare $block->getAttributeSetName($_product)
.