// 得到指定模組 mid $module_handler =& xoops_gethandler('module'); $xoopsModule =& $module_handler->getByDirname('ugm_stk'); $mid = $xoopsModule->getVar('mid'); ``` 二、得到偏好設定 ``` // 取得該 mid 的模組參數 $config_handler = & xoops_gethandler('config'); $xoopsModuleConfig = & $config_handler->getConfigsByCat(0, $mid); ```
// 取得該 mid 的模組參數 $config_handler = & xoops_gethandler('config'); $xoopsModuleConfig = & $config_handler->getConfigsByCat(0, $mid); ```