Viewing file: umShowGroup.php (2.67 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<? include_once("pagebody.php"); pageHeader(); $pageTitle="กำหนดกลุ่มระบบงาน-กำหนดสิทธิ์"; ?> <table width=100% class="pageTitleBgColor" align="center"> <tr><td align=center><? echo $pageTitle; ?></td></tr> </table> <!--your code here--------------------------------------------------------------------------> <p><br> <? include_once("clsUmGroup.php"); include_once("clsUmSystem.php"); $oC = new clsConnection($GLOBALS['HOST'], $GLOBALS['DB'], $GLOBALS['USER'], $GLOBALS['PASSWORD']); $oGp = new umgroup($oC); $oSt = new umsystem($oC); $oSt->RSumsystem(); $oGp->RSumgroupByName(); ?> <table border="0" align="center" cellspacing="1" class="TableBodyBgColor" cellpadding="2"> <tr class="TableHeaderBgColor"> <th>#</th> <th>ระบบงาน</th> <th>ชื่อกลุ่มงาน(ท)</th> <th>ชื่อกลุ่มงาน(E)</th> <th>คำอธิบาย</th> <th colspan="3">ดำเนินการ</th> </tr> <? $i=0; while ($oSt->GetRecord()){ $i++; echo "<tr align=center bgcolor=#efefef><td>$i</td>"; echo "<td align=left colspan=7>$oSt->StNameT</td></tr>"; $j=0; $oGp->RSumGroupByStID($oSt->StID); while ($oGp->GetRecord()){ $j++; echo "<tr class=\"TableRowBgColor\">\n"; echo "<td></td>\n"; echo "<td align=center>$j</td>\n"; echo "<td>" . $oGp->GpNameT . "</td>\n"; echo "<td>" . $oGp->GpNameE . "</td>\n"; echo "<td>" . $oGp->GpDesc . "</td>\n"; echo "<td align=right><a href='#' onClick=\"doEdit($oGp->GpID)\"><img src=\"images/edit.gif\" alt=\"แก้ไข\" border=\"0\"></a></td>\n"; if ($oGp->GpID>74){ echo "<td><a href='#' onClick=\"doDelete(document.form1, '$oGp->GpNameT', $oGp->GpID)\"><img src=\"images/del.gif\" alt=\"ลบ\" border=\"0\"></a></td>\n"; }else { echo "<td><img src=\"images/delgrey.gif\" alt=\"ลบ\" border=\"0\"></td>\n"; } echo "<td><a href='#' onClick=\"doGPermission($oGp->GpID)\"><img src=\"images/menu.gif\" alt=\"กำหนดสิทธิ์\" border=\"0\"></a></td>\n"; echo "</tr>\n"; } } echo "<tr class=TablefooterBgColor>"; echo "<td colspan=\"5\"> </td>"; echo "<td colspan=\"3\" align=\"center\"><a href=\"umAddGroup.php\"><img src=\"images/new.gif\" alt=\"เพิ่มกลุ่มผู้ใช้\" border=\"0\"></a></td>"; echo "</tr>"; ?> </table> <br> </p> <!---------------------------------------------------------------------> <? $oGp->Close(); pageFooter(); ?> <!---------------------------------------------------------------------> <!--put javascript here--> <script language="javascript"> function doEdit(ID){ window.location='umEditGroup.php?GpID=' + ID; } function doDelete(f,txt,ID){ if (confirm('ต้องการลบกลุ่มผู้ใช้ ' + txt + ' ใช่หรือไม่') ) { window.location='processUmGroup.php?method=delete&GpID=' + ID; } } function doGPermission(ID){ window.location='umGPermission.php?GpID=' + ID; } </script>
|