3-3
後台管理主頁樣板
- 先修改 main.php 的樣板檔設定
<?php
/*-----------引入檔案區--------------*/
$xoopsOption['template_main'] = "tad_signup_adm_main.tpl";
include_once "header.php";
include_once "../function.php";
-
樣板名稱不可和其他模組名稱一樣,故命名一般建議是「模組名稱_後台_頁面名稱.tpl」,以避免檔名重複,若是在前台,則將「_後台」省略即可。
-
接著,請將 templates/demo_adm_index.tpl 改為 tad_signup_adm_main.tpl 即可。
-
最後,開啟 xoops_version.php 修改樣板設定部份
//---樣板設定---//
$modversion['templates'] = array();
$i = 1;
$modversion['templates'][$i]['file'] = 'tad_signup_adm_main.tpl';
$modversion['templates'][$i]['description'] = 'tad_signup_adm_main.tpl';