I have an array of attribute codes which I need to get the values of:

$attributes = array(
    'Category'           => 'type',
    'Manufacturer'       => 'brand',
    'Title'              => 'meta_title',
    'Description'        => 'description',
    'Product Link'       => 'url_path',
    'Price'              => 'price',
    'Product-image link' => 'image',
    'SKU'                => 'sku',
    'Stock'              => 'qty',
    'Condition'          => 'condition',
    'Shipping cost'      => 'delivery_cost');

After iterating through a product collection I get the frontend values of the attributes like so:

$attributeId = Mage::getResourceModel('eav/entity_attribute')
    ->getIdByCode('catalog_product', $attribute_code);
$attribute = Mage::getModel('catalog/resource_eav_attribute')
    ->load($attributeId);
$value = $attribute->getFrontend()->getValue($product);

Simply using $product->getDate($attribute) won't work with dropdowns and multi-selects, it just returns their id and not their frontend value.

While the code above works, it seems to be a long way around getting the value, but more importantly it runs quite slow. Is there a faster/more sensible way to get the frontend values for product attributes?

Edit
I now have the following (after dealing with special cases like image and qty) which is a bit easier on the eyes and does seem to run quicker (although I don't know why):

$inputType = $product->getResource()
                     ->getAttribute($attribute_code)
                     ->getFrontend()
                     ->getInputType();

switch ($inputType) {
case 'multiselect':
case 'select':
case 'dropdown':
    $value = $product->getAttributeText($attribute_code);
    if (is_array($value)) {
        $value = implode(', ', $value);
    }
    break;
default:
    $value = $product->getData($attribute_code);
    break;
}

$attributesRow[] = $value;

If anyone can improve this (make it simpler/more efficient), please post an answer.

link|improve this question

Take a look at this article blog.chapagain.com.np/… – Tim Aug 18 '11 at 10:53
Thanks, useful article. – Jamie Aug 18 '11 at 12:33
feedback

2 Answers

up vote 1 down vote accepted

For dropdowns and multiselects and only with products (this isn't a general EAV trick) you can use getAttributeText().

$value = $product->getAttributeText($attribute_code);
link|improve this answer
Thanks for pointing that out. I'd wondered how it was that that method worked on some attributes and not others. – Jamie Aug 18 '11 at 12:32
feedback

It depends on how you have set up the attribute (is it accessible from the context you are trying to reach it?), but the simplest way is usually like this (for meta_title, for example):

$product->getMetaTitle()
link|improve this answer
Thanks, but some attributes may not be accessible using the magic getter method. – Jamie Aug 18 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.