因为它是文本框的,所以我不确定数组是如何工作的。
失败。
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;
}
答案 0 :(得分:0)
我通过在Magento.zip
搜索明显的默认文本框变量来找到答案。
将其添加到config.xml
标记之间的<config></config>
。
<default>
<showdown> <!-- section -->
<dagroup> <!-- group -->
<dailymatches>1</dailymatches>
<maxmatchvotes>100</maxmatchvotes>
<field>default value</field>
<!-- <blah><![CDATA[<strong>html tags</strong>]]></blah>
<blah2><![CDATA[cdata@foremail.addresses]]></blah2> -->
</dagroup>
</showdown>
</default>