# ---- 在 加上 rel='lyteframe[booth]' title='{$number}' rev='width: 600px; height: 600px; scrolling: yes;' # ---- 在 head 加上 //--------------------- 引入jquery ------------------------------------- if(!file_exists(XOOPS_ROOT_PATH."/modules/tadtools/jquery.php")){ redirect_header("index.php",3, _TAD_NEED_TADTOOLS); } include_once XOOPS_ROOT_PATH."/modules/tadtools/jquery.php"; $jquery_path = get_jquery(); //一般只要此行即可 # -------- 燈箱---------------------------------------- $lytebox=" "; # -------------------------------------------------------- # ---- 在switch 加上 -------------------------------------------- //瀏覽單筆資料->燈箱 圖片 case "ugm_market_booth_view": echo show_lytebox_html(show_one_ugm_market_booth($sn),""); #秀單筆的程式碼 exit; # --------------------------------------------------------------- # ---- 在block_function ---------------------------------------- ################################################################################ # 燈箱打包碼(內容,標題) # # # ################################################################################ if(!function_exists("show_lytebox_html")){ function show_lytebox_html($content,$title){ global $xoopsModule; # ---- 取得模組目錄名稱 --------------- $MDIR=$xoopsModule->getVar('dirname'); # ------------------------------------- $main="{$title} {$content} "; return $main; } }{$title}
2013年9月25日 星期三
取得XOOPS內建表單語法
取得XOOPS內建表單語法
群組多選選單
群組多選選單
# ---- 引入XOOPS 內建表單物件 ------------------------------- include_once(XOOPS_ROOT_PATH."/class/xoopsformloader.php"); # ---- 預設值 ----------------------------------------------- $group=$xoopsModuleConfig['query_admin']; # ---- XoopsFormSelectGroup('標題', 'name', 含訪客, '預設值', 高度 ,多選) $form=new XoopsFormSelectGroup ("", "group", false, $group, 3, true); # ---- 輸出HTML碼 ------------------------------------------ $main_form = $form->render(); # ----- 輸出驗證碼----------------------------------------------------- $configs=""; $Captcha=new XoopsFormCaptcha ("請輸入驗證碼", 'xoopscaptcha', false, $configs); # ---- 輸出HTML碼 ------------------------------------------ $form_Captcha = $Captcha->render();
訂閱:
文章 (Atom)