我已經爲Magento創建了一個插件。 我需要改進添加一些基於語言的功能。所以我必須爲每種語言添加一個文本字段。以編程方式將字段添加到system.xml
<lc_global translate="label" module="lc_e">
[...]
<groups>
<lc_preferences translate="label">
<label></label>
[...]
<fields>
to be cycled
*<it_code>
<label>Code</label>
<frontend_type>text</frontend_type>
<sort_order>1</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>0</show_in_website>
<show_in_store>0</show_in_store>
<validate>validate-number</validate>
</it_code>*
end
</fields>
你想以編程方式添加管理員CONFIGRATION領域? –
是的,它們必須基於語言,動態和編程。 –