System Config Multiselect default all all selected


8

multiselectタイプのシステム構成フィールドがあり、を使用して入力されますcatalog/product_attribute_collection。これはsystem.xmlそれを定義するの一部です。

  <attributes>
       <label>Choose Attributes to JSONize</label>
       <frontend_type>multiselect</frontend_type>
       <sort_order>3</sort_order>
       <show_in_default>1</show_in_default>
       <show_in_website>1</show_in_website>
       <show_in_store>1</show_in_store>

<source_model>package_module/system_config_attributes</source_model>
  </attributes>

次に、複数選択のすべての値がデフォルトで選択されるようにします。システム設定のデフォルト値はで定義されているためconfig.xml、すべてをデフォルトとして選択する方法がわかりません。

これはconfig.xml質問に関連するセクションです

<default>
    <mytab>
        <mysection>
            <attributes><!-- ***WHAT SHOULD I WRITE HERE*** --></attributes>
        </mysection>
    </mytab>
</default>

回答:


6

D ataScriptを使用してデータを構成モジュールに格納します。

データスクリプトの作成方法

http://inchoo.net/magento/magento-install-install-upgrade-data-and-data-upgrade-scripts/

データスクリプトでコア設定モジュールを呼び出してデータを保存するだけです

$myDynamicValue = '1,2,3';
Mage::getConfig()->saveConfig('section/group/field', $myDynamicValue, 'default', 0);

これは本当に賢い回避策で、うまくいきました!
Jay Ghosh、

3

複数選択の例を示します。

<fields>
    <view_style translate="label">
        <label>Display Settings</label>
        <frontend_type>multiselect</frontend_type>
        <source_model>yourmodule/system_config_source_view</source_model>
        <sort_order>40</sort_order>
        <show_in_default>1</show_in_default>
    </view_style>
</fields>

このパスのモジュールで複数選択オプションのファイルを1つ作成します

your_namespace / yourmodel / Model / System / Config / Source / View.php

以下のコードをView.phpに追加します

class YourNamespace_YourModule_Model_System_Config_Source_View 
{
    /**
     * Options getter
     *
     * @return array
     */
    public function toOptionArray()
    {
        return array(
            array('value' => 0, 'label' => Mage::helper('adminhtml')->__('Data1')),
            array('value' => 1, 'label' => Mage::helper('adminhtml')->__('Data2')),
            array('value' => 2, 'label' => Mage::helper('adminhtml')->__('Data3')),
        );
    }

    /**
     * Get options in "key-value" format
     *
     * @return array
     */
    public function toArray()
    {
        return array(
            0 => Mage::helper('adminhtml')->__('Data1'),
            1 => Mage::helper('adminhtml')->__('Data2'),
            3 => Mage::helper('adminhtml')->__('Data3'),
        );
    }
}

あなたの答えは、ソースモデルを定義する方法を示しています。私はすでにそれをしました。ソースモデルのすべての値をデフォルトで選択してほしい
Jay Ghosh

3
<default>
     <mytab>
        <mysection>
            <attributes><!-- ***WHAT SHOULD I WRITE HERE*** --></attributes>
        </mysection>
    </mytab>
</default>

オプション配列のコンマ区切りのキーを使用する必要があります。

例えば

<default>
     <mytab>
        <mysection>
            <attributes>0,1,3</attributes>
        </mysection>
    </mytab>
</default>

デフォルトでは3つのオプションすべてを選択します。


はい、でも私が言ったように。カンマ区切りの文字列で書き込む値を事前に知りません。それは動的です
Jay Ghosh
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.