構成定義値のデフォルト値を設定しますか?


11

system.xmlファイルで定義している構成値にデフォルト値を割り当てるにはどうすればよいですか?現在はデフォルトで「いいえ」になっていますが、デフォルトで「はい」にしたいです。

これが私の現在の定義コードです:

<catalog>
            <groups>
                <my_val>
                    <label>My Label</label>
                    <frontend_type>text</frontend_type>
                    <sort_order>160</sort_order>
                    <show_in_default>1</show_in_default>
                    <show_in_website>1</show_in_website>
                    <show_in_store>1</show_in_store>
                    <fields>
                        <my_inner_val translate='label comment'>
                            <label>Enable seperate cart items</label>
                            <frontend_type>select</frontend_type>
                            <source_model>adminhtml/system_config_source_yesno</source_model>
                            <sort_order>1</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                        </my_inner_val>
                    </fields>
                </my_val>
            </groups>
        </catalog>

回答:


31

のすべての構成設定にデフォルト値を簡単に追加できますconfig.xml

<config>
    <default>
        <cms>
            <wysiwyg>
                <enabled>0</enabled>
            </wysiwyg>
        </cms>
    </default>
</config>

現時点では、system.xml設定名をノード内のノードにマップできませんconfig.xml

私はそれを言うでしょう:catalog/my_val/my_inner_val、意味:

<config>
    <default>
        <catalog>
            <my_val>
                <my_inner_val>1</my_inner_val>
            </my_val>
        </catalog>
    </default>
</config>

最後に小さなヒント:int設定に注意してください。時々、magentoは12yes / no、on / offなどを使用します。


グレートこれは私が把握しようとしていたものです
ガーションHerczeg

3

モジュールのからデフォルト値を割り当てることができますconfig.xml。そのようなxp​​athを持つノードを定義します

config/default/catalog/my_val/my_inner_val.

これがお役に立てば幸いです。


0

顧客モジュールのアカウント作成セクションのカスタムフィールドのデフォルト値ストアワイズ:

<stores>
    <default>
        <customer>
            <create_account>
                <postcode_validation>postcodevalidation-GB</postcode_validation>
                <postcode_format>Accepted Formats:- AA9A 9AA, A9A 9AA, A9 9AA, A99 9AA, AA9 9AA, AA99 9AA</postcode_format>
                <postcode_regexp>([A-Z])([A-Z])([0-9])([A-Z]) ([0-9])([A-Z])([A-Z]),([A-Z])([0-9])([A-Z]) ([0-9])([A-Z])([A-Z]),([A-Z])([0-9]) ([0-9])([A-Z])([A-Z]),([A-Z])([0-9])([0-9]) ([0-9])([A-Z])([A-Z]),([A-Z])([A-Z])([0-9]) ([0-9])([A-Z])([A-Z]),([A-Z])([A-Z])([0-9])([0-9]) ([0-9])([A-Z])([A-Z])</postcode_regexp>
                <postcode_uppercase>1</postcode_uppercase>
            </create_account>
        </customer>
    </default>
</stores>

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.