การตั้งค่าเริ่มต้นสำหรับการกำหนดค่ากำหนด?


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ตั้งค่า บางครั้งวีโอไอพีใช้1และ2สำหรับใช่ / ไม่ใช่, เปิด / ปิด ฯลฯ


เยี่ยมมากนี่คือสิ่งที่ฉันพยายามจะคิดออกมา
Gershon Herczeg

3

คุณสามารถกำหนดค่าเริ่มต้นจากโมดูลของconfig.xmlคุณ กำหนดโหนดที่มี xpath ดังกล่าว

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.