मैं कॉन्फ़िगर मान को डिफ़ॉल्ट मान कैसे दे सकता हूं, जिसे मैं एक 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>