entranceVIPUserGroup.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:9k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.db.*"%>
  4. <%@ page import="cn.js.fan.web.*"%>
  5. <%@ page import="cn.js.fan.util.*"%>
  6. <%@ page import="com.redmoon.forum.plugin.*"%>
  7. <%@ page import="com.redmoon.forum.plugin.entrance.*"%>
  8. <%@ page import="com.redmoon.forum.*"%>
  9. <%@ page import="com.redmoon.forum.person.*"%>
  10. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  11. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  12. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  13. <html><head>
  14. <meta http-equiv="pragma" content="no-cache">
  15. <link rel="stylesheet" href="../../common.css">
  16. <LINK href="default.css" type=text/css rel=stylesheet>
  17. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  18. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  19. <title><lt:Label res="res.label.forum.admin.entrance" key="plugin_manager"/></title>
  20. <body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
  21. <jsp:useBean id="privilege" scope="page" class="cn.js.fan.module.pvg.Privilege"/>
  22. <%
  23. if (!privilege.isUserPrivValid(request, "forum.plugin"))
  24. {
  25. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  26. return;
  27. }
  28. String op = ParamUtil.get(request, "op");
  29. if (op.equals("add")) {
  30. String boardCode = ParamUtil.get(request, "boardCode");
  31. if (!boardCode.equals("")) {
  32. String entranceCode = VIPUserGroupEntrance.CODE;
  33. BoardEntranceDb be = new BoardEntranceDb();
  34. be.setBoardCode(boardCode);
  35. be.setEntranceCode(entranceCode);
  36. if (be.create()) {
  37. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  38. }
  39. else
  40. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  41. }
  42. }
  43. if (op.equals("del")) {
  44. String boardCode = ParamUtil.get(request, "boardCode");
  45. String entranceCode = VIPUserGroupEntrance.CODE;
  46. BoardEntranceDb be = new BoardEntranceDb();
  47. be = be.getBoardEntranceDb(boardCode, entranceCode);
  48. if (be.del()) {
  49. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  50. }
  51. else
  52. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  53. }
  54. if (op.equals("delUserGroup")) {
  55. String groupCode = ParamUtil.get(request, "groupCode");
  56. VIPUserGroupDb be = new VIPUserGroupDb();
  57. be = be.getVIPUserGroupDb(groupCode);
  58. if (be.del()) {
  59. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  60. }
  61. else
  62. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  63. }
  64. %>
  65. <table width='100%' cellpadding='0' cellspacing='0' >
  66.   <tr>
  67.     <td class="head"><lt:Label res="res.label.forum.admin.entrance" key="plugin_manage"/></td>
  68.   </tr>
  69. </table>
  70. <br>
  71. <table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  72.   <tr> 
  73.     <td height=20 align="left" class="thead">
  74.       <lt:Label res="res.label.forum.admin.entrance" key="plugin_entrance"/>
  75.     -&nbsp;<%=SkinUtil.LoadString(request, "res.config.entrance", VIPUserGroupEntrance.CODE)%></td>
  76.   </tr>
  77.   <tr> 
  78.     <td valign="top"><br>
  79.       <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFBFF" class="tableframe_gray">
  80.       <tr align="center">
  81.         <td width="23%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="board_code"/></td>
  82.         <td width="34%" height="22"><lt:Label key="op"/></td>
  83.       </tr>
  84. <%
  85. BoardEntranceDb br = new BoardEntranceDb();
  86. Vector v = br.list(VIPUserGroupEntrance.CODE);
  87. Iterator ir = v.iterator();
  88. Leaf leaf = new Leaf();
  89. while (ir.hasNext()) {
  90. BoardEntranceDb sb = (BoardEntranceDb)ir.next();
  91. leaf = leaf.getLeaf(sb.getBoardCode());
  92. %>
  93.       <tr align="center">
  94.         <td height="22"><%=leaf.getName()%></td>
  95.         <td height="22"><a href="?op=del&boardCode=<%=StrUtil.UrlEncode(leaf.getCode())%>&entranceCode=<%=StrUtil.UrlEncode(sb.getEntranceCode())%>"><lt:Label key="op_del"/></a></td>
  96.       </tr>
  97. <%}%>   
  98.     </table>
  99.       <br>
  100.       <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="0">
  101.   <form name=form1 action="?op=add" method=post>
  102.           <tr>
  103.           <td width="38%" align="right">
  104.   <select name="boardCode" onChange="if(this.options[this.selectedIndex].value=='no'){alert('<lt:Label res="res.label.forum.admin.entrance" key="error_sel_field"/>'); this.selectedIndex=0;}">
  105.             <option value="" selected><lt:Label res="res.label.forum.admin.entrance" key="sel_board"/></option>
  106.             <%
  107. LeafChildrenCacheMgr dlcm = new LeafChildrenCacheMgr("root");
  108. java.util.Vector vt = dlcm.getChildren();
  109. ir = vt.iterator();
  110. while (ir.hasNext()) {
  111. leaf = (Leaf) ir.next();
  112. String parentCode = leaf.getCode();
  113. %>
  114.             <option style="BACKGROUND-COLOR: #f8f8f8" value="no">╋ <%=leaf.getName()%></option>
  115. <%
  116. LeafChildrenCacheMgr dl = new LeafChildrenCacheMgr(parentCode);
  117. v = dl.getChildren();
  118. Iterator ir1 = v.iterator();
  119. while (ir1.hasNext()) {
  120. Leaf lf = (Leaf) ir1.next();
  121. %>
  122.             <option style="BACKGROUND-COLOR: #eeeeee" value="<%=lf.getCode()%>"> ├『<%=lf.getName()%>』</option>
  123. <%if (lf.getChildCount()>0) {
  124. Vector vch = lf.getChildren();
  125. Iterator irch = vch.iterator();
  126. while (irch.hasNext()) {
  127. Leaf chlf = (Leaf)irch.next();
  128. %>
  129.             <option style="BACKGROUND-COLOR: #eeeeee" value="<%=chlf.getCode()%>">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ├『<%=chlf.getName()%>』</option>
  130. <%
  131. }
  132. }%>
  133.     <%}
  134. }%>
  135.           </select>
  136. &nbsp;&nbsp;&nbsp;&nbsp;        </td>
  137.           <td width="62%" align="left">     <input type=submit value="<lt:Label res="res.label.forum.admin.entrance" key="add_board"/>">
  138. &nbsp;&nbsp;<input type="button" onClick="window.location.href='VIPUserGroup_add.jsp'" value="<lt:Label res="res.label.forum.admin.entrance" key="add_user_group"/>"></td>
  139.       </tr></form>
  140.       </table>
  141.       <%
  142. int pagesize = 10;
  143. Paginator paginator = new Paginator(request);
  144. VIPUserGroupDb vtu = new VIPUserGroupDb();
  145. String sql = "select groupCode from " + vtu.getTableName() + " order by beginDate desc";
  146. int total = vtu.getObjectCount(sql);
  147. paginator.init(total, pagesize);
  148. int curpage = paginator.getCurPage();
  149. //设置当前页数和总页数
  150. int totalpages = paginator.getTotalPages();
  151. if (totalpages==0)
  152. {
  153. curpage = 1;
  154. totalpages = 1;
  155. }
  156. %>
  157.       <table width="86%" height="24" border="0" align="center" cellpadding="0" cellspacing="0">
  158.         <tr>
  159.           <td align="right"><div><%=paginator.getPageStatics(request)%></div></td>
  160.         </tr>
  161.       </table>
  162.       <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#666666" class="tableframe_gray">
  163.         <tr align="center" bgcolor="#F1EDF3">
  164.           <td width="8%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="user_group"/></td>
  165.           <td width="12%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="begin_date"/></td>
  166.           <td width="18%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="end_date"/></td>
  167.           <td width="21%"><lt:Label res="res.label.forum.admin.entrance" key="status"/></td>
  168.           <td width="14%"><lt:Label key="op"/></td>
  169.         </tr>
  170.         <%
  171. Vector vth = vtu.list(sql, (curpage-1)*pagesize, curpage*pagesize-1);
  172. Iterator irt = vth.iterator();
  173. int i = 0;
  174. UserGroupMgr ugm = new UserGroupMgr();
  175. while (irt.hasNext()) {
  176. vtu = (VIPUserGroupDb)irt.next();
  177. UserGroupDb ugd = ugm.getUserGroupDb(vtu.getGroupCode());
  178. i++;
  179. %>
  180.         <form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method="post">
  181.           <tr align="center">
  182.             <td height="22" bgcolor="#FFFFFF"><%=ugd.getDesc()%> </td>
  183.             <td height="22" bgcolor="#FFFFFF"><%=com.redmoon.forum.ForumSkin.formatDate(request, vtu.getBeginDate())%></td>
  184.             <td height="22" bgcolor="#FFFFFF"><%=com.redmoon.forum.ForumSkin.formatDate(request, vtu.getEndDate())%></td>
  185.             <td bgcolor="#FFFFFF"><%=vtu.isValid()?SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "status_use"):SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "status_not_use")%></td>
  186.             <td height="22" bgcolor="#FFFFFF"><a href="VIPUserGroup_edit.jsp?groupCode=<%=StrUtil.UrlEncode(vtu.getGroupCode())%>"><lt:Label key="op_edit"/></a>&nbsp;&nbsp;<a href="#" onClick="if (confirm('<lt:Label key="confirm_del"/>')) window.location.href='?op=delUserGroup&groupCode=<%=StrUtil.UrlEncode(vtu.getGroupCode())%>'"><lt:Label key="op_del"/></a></td>
  187.           </tr>
  188.         </form>
  189.         <%}%>
  190.       </table>
  191.       <table width="86%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  192.         <tr>
  193.           <td height="23"><div align="right">
  194.               <%
  195. String querystr = "op=" + op;
  196.     out.print(paginator.getCurPageBlock("?"+querystr));
  197. %>
  198.           </div></td>
  199.         </tr>
  200.       </table></td>
  201.       </tr>
  202.       </table>
  203.       </td>
  204.       </tr>
  205.       </table></td>
  206.   </tr>
  207. </table>
  208. </td> </tr>             
  209.       </table>                                        
  210.        </td>                                        
  211.      </tr>                                        
  212.  </table>                                        
  213.                                
  214. </body>                                        
  215. </html>                            
  216.