-1

因为它是用于文本框的,所以我不确定该数组应该如何工作。

这失败了。

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;
}
4

1 回答 1

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>
于 2012-07-15T10:48:22.087 回答