Làm cách nào tôi có thể gán giá trị mặc định cho giá trị cấu hình mà tôi đang xác định trong tệp system.xml? Hiện tại nó mặc định là 'không', nhưng tôi muốn nó mặc định là 'có'.
Đây là mã định nghĩa hiện tại của tôi:
<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>