5.
新增、列出功能
一、 XOOPS的資料庫物件
- $xoopsDB是內建的資料庫物件
- 基本的連線XOOPS已經處理好了
- 在函數中記得global $xoopsDB;
- 加入資料表前置字串:$xoopsDB->prefix("資料表")
- 執行SQL語法:$result=$xoopsDB->query("SQL語法")
- 抓取資料陣列(名稱索引):$xoopsDB->fetchArray($result)
- 抓取資料陣列(數字索引):$xoopsDB->fetchRow($result)
- 最新流水號:$xoopsDB->getInsertId()
二、 XOOPS使用者物件:$xoopsUser
- 取得使用者編號的寫法:$uid=$xoopsUser->uid();
- 避免沒登入產生錯誤:$uid=($xoopsUser)?$xoopsUser->uid():0;
- $xoopsUser物件方法:
02 | $xoopsUser ->getVar( 'uid' ):1 |
03 | $xoopsUser ->getVar( 'name' ):吳大頭 |
04 | $xoopsUser ->getVar( 'uname' ):tad |
05 | $xoopsUser ->getVar( 'email' ):tad0616@gmail.com |
06 | $xoopsUser ->getVar( 'url' ):http: |
07 | $xoopsUser ->getVar( 'user_avatar' ):avatars/cavt50877193c9788.png |
08 | $xoopsUser ->getVar( 'user_regdate' ):1294384702 |
09 | $xoopsUser ->getVar( 'user_icq' ): |
10 | $xoopsUser ->getVar( 'user_from' ): |
11 | $xoopsUser ->getVar( 'user_sig' ): |
12 | $xoopsUser ->getVar( 'user_viewemail' ):1 |
13 | $xoopsUser ->getVar( 'actkey' ): |
14 | $xoopsUser ->getVar( 'user_aim' ): |
15 | $xoopsUser ->getVar( 'user_yim' ): |
16 | $xoopsUser ->getVar( 'user_msnm' ): |
17 | $xoopsUser ->getVar( 'pass' ):56ab24c15b72a457069c5ea42fcfc640 |
18 | $xoopsUser ->getVar( 'posts' ):12 |
19 | $xoopsUser ->getVar( 'attachsig' ):0 |
20 | $xoopsUser ->getVar( 'rank' ):7 |
21 | $xoopsUser ->getVar( 'level' ):5 |
22 | $xoopsUser ->getVar( 'theme' ):school2013 |
23 | $xoopsUser ->getVar( 'timezone_offset' ):8.0 |
24 | $xoopsUser ->getVar( 'last_login' ):1358862705 |
25 | $xoopsUser ->getVar( 'umode' ):thread |
26 | $xoopsUser ->getVar( 'uorder' ):0 |
27 | $xoopsUser ->getVar( 'notify_method' ):1 |
28 | $xoopsUser ->getVar( 'notify_mode' ):0 |
29 | $xoopsUser ->getVar( 'user_occ' ):龍崎國小 |
30 | $xoopsUser ->getVar( 'bio' ): |
31 | $xoopsUser ->getVar( 'user_intrest' ):114620 |
32 | $xoopsUser ->getVar( 'user_mailok' ):0 |
33 | $xoopsUser ->getGroups():Array |
- 以uid取得使用者名稱
1 | $uid_name =XoopsUser::getUnameFromId( $uid ,1); |
2 | if ( empty ( $uid_name )) $uid_name =XoopsUser::getUnameFromId( $uid ,0); |
二、 寫入資料庫
- PHP的寫法:
1 | $sql = "insert into `xx_tad_honor` (`honor_year` , `honor_date` , `honor_students` , `honor_descript` , `honor_teachers` , `honor_note`) values('$honor_year' , '$honor_date' , '$honor_students' , '$honor_descript' , '$honor_teachers' , '$honor_note' , '$uid')" ; |
2 | mysql_query( $sql ) or die (mysql_error()); |
- XOOPS的寫法:
1 | $sql = "insert into " . $xoopsDB ->prefix( "tad_honor" ). " (`honor_year` , `honor_date` , `honor_students` , `honor_descript` , `honor_teachers` , `honor_note` , `uid`) values('$honor_year' , '$honor_date' , '$honor_students' , '$honor_descript' , '$honor_teachers' , '$honor_note' , '$uid')" ; |
2 | $xoopsDB ->queryF( $sql ) or redirect_header( 'index.php' , 3, mysql_error()); |
三、 列出全部
- 列出所有資料的SQL語法(幾乎所有撈資料的情形皆可套用,只要修改資料表名稱以及排序欄位即可):
1 | $sql = "select * from " . $xoopsDB ->prefix( "tad_honor" ). " order by `honor_date` desc" ; |
2 | $result = $xoopsDB ->queryF( $sql ) or redirect_header( 'index.php' , 3, mysql_error()); |
5 | while ( $all = $xoopsDB ->fetchArray( $result )){ |
9 | $xoopsTpl ->assign( "all_data" , $all_data ); |
- 其中 $all 是一個陣列,每抓出一筆資料,就會得到下列這樣的陣列:
1 | $all [ 'honor_sn' ]= '流水號的值' ; |
2 | $all [ 'honor_year' ]= '學年度的值' ; |
3 | $all [ 'honor_date' ]= '日期的值' ; |
4 | $all [ 'honor_students' ]= '得獎者的值' ; |
5 | $all [ 'honor_descript' ]= '得獎事項的值' ; |
6 | $all [ 'honor_teachers' ]= '指導老師的值' ; |
7 | $all [ 'honor_note' ]= '備註的值' ; |
- 當我們使用 $all_data[$i]=$all; 後,會產生如下的值(假如抓到三筆資料的話),換言之,當我們多加上一維(現在是二維陣列了)之後,一個 $all_data 就足以容納所有的資料內容:
01 | $all_data [0][ 'honor_sn' ]= '第1筆資料流水號的值' ; |
02 | $all_data [0][ 'honor_year' ]= '第1筆資料學年度的值' ; |
03 | $all_data [0][ 'honor_date' ]= '第1筆資料日期的值' ; |
04 | $all_data [0][ 'honor_students' ]= '第1筆資料得獎者的值' ; |
05 | $all_data [0][ 'honor_descript' ]= '第1筆資料得獎事項的值' ; |
06 | $all_data [0][ 'honor_teachers' ]= '第1筆資料指導老師的值' ; |
07 | $all_data [0][ 'honor_note' ]= '第1筆資料備註的值' ; |
08 | $all_data [0][ 'uid' ]= '第1筆資料發布者的值' ; |
10 | $all_data [1][ 'honor_sn' ]= '第2筆資料流水號的值' ; |
11 | $all_data [1][ 'honor_year' ]= '第2筆資料學年度的值' ; |
12 | $all_data [1][ 'honor_date' ]= '第2筆資料日期的值' ; |
13 | $all_data [1][ 'honor_students' ]= '第2筆資料得獎者的值' ; |
14 | $all_data [1][ 'honor_descript' ]= '第2筆資料得獎事項的值' ; |
15 | $all_data [1][ 'honor_teachers' ]= '第2筆資料指導老師的值' ; |
16 | $all_data [1][ 'honor_note' ]= '第2筆資料備註的值' ; |
17 | $all_data [1][ 'uid' ]= '第2筆資料發布者的值' ; |
19 | $all_data [2][ 'honor_sn' ]= '第3筆資料流水號的值' ; |
20 | $all_data [2][ 'honor_year' ]= '第3筆資料學年度的值' ; |
21 | $all_data [2][ 'honor_date' ]= '第3筆資料日期的值' ; |
22 | $all_data [2][ 'honor_students' ]= '第3筆資料得獎者的值' ; |
23 | $all_data [2][ 'honor_descript' ]= '第3筆資料得獎事項的值' ; |
24 | $all_data [2][ 'honor_teachers' ]= '第3筆資料指導老師的值' ; |
25 | $all_data [2][ 'honor_note' ]= '第3筆資料備註的值' ; |
26 | $all_data [2][ 'uid' ]= '第3筆資料發布者的值' ; |
四、產生XOOPS風格的表格
- 套用XOOPS的表格風格:<table cellspacing='1' class='outer'>,標題部份:<th class='txtcenter'>分類標題</th>,表格內容部份:<tr class='odd'>或<tr class='even'>
01 | < table cellspacing = '1' class = 'outer' > |
03 | < th class = 'txtcenter' >學年度</ th > |
04 | < th class = 'txtcenter' >得獎日期</ th > |
05 | < th class = 'txtcenter' >得獎者</ th > |
06 | < th class = 'txtcenter' >得獎事項</ th > |
07 | < th class = 'txtcenter' >指導老師</ th > |
五、利用Smarty迴圈產生列表內容
- smarty迴圈的寫法:
1 | <{foreach from=$all_data item=data}> |
3 | < td ><{$data.honor_year}></ td > |
4 | < td ><{$data.honor_date}></ td > |
5 | < td ><{$data.honor_students}></ td > |
6 | < td ><{$data.honor_descript}></ td > |
7 | < td ><{$data.honor_teachers}></ td > |
- 套用上BootStrap後的表格:
01 | < table class = "table table-striped table-bordered table-hover" > |
03 | < th class = 'txtcenter' >學年度</ th > |
04 | < th class = 'txtcenter' >得獎日期</ th > |
05 | < th class = 'txtcenter' >得獎者</ th > |
06 | < th class = 'txtcenter' >得獎事項</ th > |
07 | < th class = 'txtcenter' >指導老師</ th > |
10 | <{foreach from=$all_data item=data}> |
12 | < td ><{$data.honor_year}></ td > |
13 | < td ><{$data.honor_date}></ td > |
14 | < td ><{$data.honor_students}></ td > |
15 | < td ><{$data.honor_descript}></ td > |
16 | < td ><{$data.honor_teachers}></ td > |
六、 在樣板中使用判斷式
- 如果要在同一個樣板,可以選擇性的出現「表單」或者「資料列表」,那麼可以用 <{if}><{elseif}><{else}><{/if}>來做判斷。
1 | <{if $now_op=="honor_form"}> |
3 | <{elseif $now_op=="honor_modify_form"}> |
- 當然,我們需要傳一個樣板變數讓樣板做判斷,例如:$now_op
七、加入後台管理頁面標題
- 請在頁尾之前加入:
1 | include_once XOOPS_ROOT_PATH. "/modules/" . $xoopsModule ->getVar( "dirname" ) . "/class/admin.php" ; |
2 | $index_admin = new ModuleAdmin() ; |
3 | $admin_title = $index_admin ->addNavigation( '檔名.php' ) ; |
4 | $xoopsTpl ->assign( "admin_title" , $admin_title ); |
- 接著在樣板檔套上 <{$admin_title}> 樣板標籤即可。