1041 XOOPS模組開發
<?php
if (!defined('XOOPS_ROOT_PATH')) {
die("XOOPS root path not defined");
}
function new_ebook($category, $item_id)
{
if ($category=='global') {
$item['name'] = '';
$item['url'] = '';
return $item;
}
// global $xoopsDB;
// if ($category=='類別') {
// $sql = 'SELECT 主題名稱欄位 FROM ' . $xoopsDB->prefix('資料表') . ' WHERE 辨識欄位 = '.$item_id;
// $result = $xoopsDB->query($sql); // TODO: error check
// $result_array = $xoopsDB->fetchArray($result);
// $item['name'] = $result_array['主題名稱欄位'];
// $item['url'] = XOOPS_URL . '/modules/模組目錄名稱/欲連結檔案.php?辨識欄位=' . $item_id;
// return $item;
// }
}
?>