MAGENTO後台管理增加圖片上傳功能
在製作Magento擴展套件時,我們通常在system.xml宣告該套件在後台的設定欄位,為該套件設定相關的參數以及文字,今天在要教大家如何在system.xml增加圖片上傳的欄位。
首先先到該套件所在的資料夾位置後編輯 etc/system.xml 檔案,接著在你欲增加的頁籤中增加下列程式碼
<example_image>
<label>Example Image</label>
<frontend_type>image</frontend_type>
<backend_model>adminhtml/system_config_backend_image</backend_model>
<base_url type="media" scope_info="1″>example</base_url>
<sort_order>40</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</example_image>
以下對三個標籤特別說明:
<frontend_type> 宣告欄位的屬性,本範例
<backend_model> 此為宣告該欄位使用的模組
<base_url type="media" scope_info="1″> 此為宣告上傳位置在media中所指定的資料夾
這樣一來你就可以從後台管理介面上傳圖片
我要留言