テキストボックス用なので、配列がどのように機能するのかわかりません。
これは失敗します。
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;
}