/**
* get multiselect attribute values on the product
*/
public function get_mulselect_attr_values($_attribute_code, $productId) {
$storeId = Mage::app()->getStore()->getStoreId();
$car_options_csv = Mage::getResourceModel('catalog/product')->getAttributeRawValue($productId, $_attribute_code, $storeId ); // returns: 123,124
$car_options = explode(',', $car_options_csv);
$attributeId = Mage::getResourceModel('eav/entity_attribute')->getIdByCode('catalog_product',$_attribute_code);
$attribute = Mage::getModel('catalog/resource_eav_attribute')->load($attributeId);
$attributeOptions = $attribute ->getSource()->getAllOptions();
$res = array();
foreach($attributeOptions as $a)
{
$l = $a['label'];
$m = $a['value'];
if (strlen(trim($l))>0 && in_array($m, $car_options))
{
$res[$m] = $l;
}
}
return $res;
}

本文介绍了一种方法,用于从Magento中获取指定产品的多选属性值。通过使用Magento的模型和资源模型,该方法能够返回所选属性值及其对应的标签。
1458

被折叠的 条评论
为什么被折叠?



