我有一个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>
现在,我希望默认情况下选中multiselect中的所有值。由于系统配置的默认值是在中定义的config.xml
,因此我不确定如何选择全部作为默认值。
这是config.xml
与问题有关的部分
<default>
<mytab>
<mysection>
<attributes><!-- ***WHAT SHOULD I WRITE HERE*** --></attributes>
</mysection>
</mytab>
</default>