たとえば、単一の属性のすべてのストアビューのすべてのオプションを取得しようとしていますcolor
。
属性については、color
2つのオプションblue
とを作成しましたwhite
。すべてのストアビューのすべてのオプションラベルを返すと想定される次のコードを試しましたが、admin
オプションラベルのみを返します。
$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)
以下はcolor
、各ストアビューのすべての属性タイトルを取得するためには正常に機能しますが、オプションに対しては機能しません。
$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)