XOOPS模組開發
一、所需變數
- 直接觀察「/uploads/ugm_creative/tpl/creative_about.html」
- 關於我們標題 title
- 關於我們內容 content
- 關於我們連結 url
- 關於我們外連 target
二、產生變數
- 在「/modules/ugm_creative/include/onInstall.php」增加變數
- 在「/modules/ugm_creative/language/main.php」增加常數(語系)
- 在 1、2完成,請執行模組更新,並檢查資料表「ugm_creative_system」,看變數是否寫入資料表
三、後台管理
- /admin/system.php
-
#Foreign key
$kind_arr = array(
"slider_home" => array("title" => "輪播"),
"about" => array("title" => "關於我們")
);
- 複製「run_system_slide_home()」=> 「run_system_about()」,替換變數名稱
- 把「creative_about.html」嵌入至函數
四、產生樣板
- theme.html => 「<{includeq file="$theme_name/tpl/creative_about.html"}>」修改
- 「<{includeq file="$xoops_rootpath/uploads/ugm_creative/tpl/creative_about.html"}>」
- 在後台變更變數測試