语法错误,意外T_PRIVATE - Magento

时间:2014-12-09 12:19:12

标签: php function magento magento-1.7

我的问题在于两个功能:

<?php
private function getAttributes() {
$attributesInfo = Mage::getResourceModel('eav/entity_attribute_collection')
    ->setEntityTypeFilter('4') 
    ->addSetInfo()
    ->getData();

$attr = array();
$currStoreViewId = Mage::app()->getStore()->getId();
foreach($attributesInfo as $attribute):
    $attribute = Mage::getModel('eav/entity_attribute')->load($attribute['attribute_id']);
    if (!$attribute->getIsVisibleOnFront()) continue;
    $labels = $attribute->getStoreLabels();
    if (isset($labels[$currStoreViewId])) $label = $labels[$currStoreViewId];
    else $label = $attribute->getFrontendLabel();
    $attr[ $attribute->getAttributeCode() ] = $label;
endforeach;
return $attr;
}

public function getProductAttributList($_product) {
$pid = $_product->getId();
if (empty($pid)) return false;
$attributes = $this->getAttributes();
if (count($attributes)>0) $html = '<table width="100%" cellpadding="0" cellspacing="0">';
else return false;
foreach($attributes as $attrcode => $attrlabel) {
    $value = $_product->{'get'.$attrcode}();
    if ($attrcode=='weight') continue;
    if (empty($value)) continue;
    if (is_numeric($value)) $value = $_product->getAttributeText($attrcode);
    $html .= '<tr><td style="width:50%; padding:0 10px 0 0;"><strong>'.$attrlabel.'</strong>
</td><td style="padding:0; width:50%;">'.$value.'</td>';
}
return $html.'</table>';
}
?>

我仍然收到错误:语法错误,意外的T_PRIVATE。谁能帮我解决这个问题? 我对公共函数有同样的问题。

1 个答案:

答案 0 :(得分:1)

功能不能公开/受保护/私密。此修饰符只能应用于类方法。