$i++; $adminmenu[$i]['title'] = _MI_TH_ADMENU1; $adminmenu[$i]['link'] = "admin/main.php"; $adminmenu[$i]['desc'] = _MI_TH_ADMENU1_DESC ; $adminmenu[$i]['icon'] = "images/admin/main.png";
$i++; $adminmenu[$i]['title'] = '字典管理'; $adminmenu[$i]['link'] = "admin/main.php"; $adminmenu[$i]['desc'] = '字典管理'; $adminmenu[$i]['icon'] = "images/admin/dictionary.png";
<?php /* main.php 是模組後台的主要內容頁面(入口)。 但並不一定要叫做 main.php ,您愛命名為什麼都行,只要 menu.php 設定好就好。 */ /*------------------ 檔頭(引入檔案) ------------------*/ //使用樣板檔 $xoopsOption['template_main'] = "後台樣板檔.html"; //引入 XOOPS 後台檔案檔頭(必要) include 'header.php'; //引入共同檔案設定檔(必要) include_once "../function.php"; //引入自訂的共同函數檔 /*------------------ 流程判斷(告訴程式現在要做什麼) -----------------*/ //$op 為XOOPS常用之動作變數,用來告知程式欲執行之動作 $op=isset($_REQUEST['op'])?$_REQUEST['op']:""; //判斷目前動作該執行哪一個 switch($op){ //當 $op 的值等於「動作1」時,欲執行的動作 case "動作1": admin_do_something(); break; //預設動作 default: break; } /*------------------ 所有函數(實際執行動作) ------------------*/ //當 $op 的值等於「動作1」時,欲執行的函數 function admin_do_something(){ } /*------------------ 檔尾(輸出內容到樣板) ------------------*/ include "footer.php"; //XOOPS檔尾 ?>
//使用樣板檔 $xoopsOption['template_main'] = "my_dict_adm_main.html";
$i++; $modversion['templates'][$i]['file'] = 'my_dict_adm_main.html'; $modversion['templates'][$i]['description'] = 'my_dict_adm_main.html';
<!--若要套用bootstrap,請載入以下這三行--> <link rel="stylesheet" type="text/css" media="screen" href="<{$xoops_url}>/modules/tadtools/bootstrap/css/bootstrap.css" /> <link rel="stylesheet" type="text/css" media="screen" href="<{$xoops_url}>/modules/tadtools/bootstrap/css/bootstrap-responsive.css" /> <link rel="stylesheet" type="text/css" media="screen" href="<{$xoops_url}>/modules/tadtools/css/xoops_adm.css" /> <h1>字典管理</h1>