Ich versuche, alle Optionen für alle Geschäftsansichten für ein einzelnes Attribut abzurufen, z color
.
Für das Attribut habe color
ich zwei Optionen angelegt blue
und white
. Ich habe den folgenden Code ausprobiert, der angeblich alle Optionsbezeichnungen für alle Geschäftsansichten zurückgibt, aber nur die admin
Optionsbezeichnung für mich zurückgibt .
$option_arr = array();
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'color');
foreach ($attribute->getSource()->getAllOptions(false) as $option) {
$option_arr[$option['value']] = $option['label'];
}
// $option_arr contains Array([4] => Blue, [3] => White)
Das Folgende funktioniert einwandfrei, um alle Attributtitel color
für jede Geschäftsansicht abzurufen, funktioniert jedoch nicht für Optionen.
$product = Mage::getModel('catalog/product')->load();
$attribute_title = $product->getResource()->getAttribute('color');
// $attribute_title contains Array([1] => ~~~, [2] =>Color, [3] => Couleur, [4] => Còôlòôr)