因为它是用于文本框的,所以我不确定该数组应该如何工作。
这失败了。
public function getDefault_dailymatches()
{
return array(
array('value' => 0, 'label' => Mage::helper()->__('First item')),
array('value' => 1, 'label' => Mage::helper()->__('Second item')),
array('value' => 2, 'label' => Mage::helper()->__('third item')),
// and so on...
);
}
这也失败了。
public function getDefault_dailymatches()
{
$default = 100;
return $default;
}