magento中的“是/否属性” - 如何获取文本值

时间:2014-02-24 09:57:21

标签: magento attributes product

$attribute_details = Mage::getSingleton("eav/config")->getAttribute("catalog_product", $code);
         $options = $attribute_details->getSource()->getAllOptions(false);
       foreach($options as $option){
          echo '<p class="question"></p>';
          echo '<input type="radio" id="'.$code.$option["value"].'" value="' . $option["value"] .'"  class="styled" name=" '.  $code . ' " />';
          echo '<label for="'.$code.$option["value"].'">';
          echo $option["label"];
          echo '</label>';
         }  

有没有办法获得问题前端标签? $ option [value]是1/0,$ option [label]是Yes / No - 我需要得到“问题文本”

1 个答案:

答案 0 :(得分:1)

该属性具有frontend_label值,您可以通过执行以下操作:

echo $attribute_details->getFrontendLabel();

如果我理解你的问题:)