Voglio recuperare tutti gli attributi del prodotto disponibili, quindi convertirli in nome e valore per il campo delle mie opzioni di selezione. In Magento 1 posso realizzarlo in questo modo:
public function getMagentoAttributes()
{
$values[] = array(
'value' => '',
'label' => 'Pick Product Attribute'
);
$categories = Mage::getResourceModel('catalog/product_attribute_collection')->getItems();
foreach ($categories as $category) {
if ($category->getFrontendLabel() != '') {
$label = $category->getFrontendLabel();
} else {
$label = $category->getAttributecode();
}
$values[] = array(
'value' => $category->getAttributecode(),
'label' => $label
);
}
return $values;
}
C'è un modo in Magento 2 di fare la stessa cosa?