如何在Magento for system.xml中使用<source_model>作为文本框?</source_model>

时间:2012-07-15 00:07:54

标签: magento

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

失败。

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

1 个答案:

答案 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>