-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 に答える