⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editmemberpermission.jsp

📁 免费的java企业级论坛可执行程序
💻 JSP
字号:
<%--
 - $Header: /cvsroot/mvnforum/mvnforum/srcweb/mvnplugin/mvnforum/admin/editmemberpermission.jsp,v 1.69 2007/11/11 02:36:44 minhnn Exp $
 - $Author: minhnn $
 - $Revision: 1.69 $
 - $Date: 2007/11/11 02:36:44 $
 -
 - ====================================================================
 -
 - Copyright (C) 2002-2007 by MyVietnam.net
 -
 - All copyright notices regarding mvnForum MUST remain 
 - intact in the scripts and in the outputted HTML.
 - The "powered by" text/logo with a link back to
 - http://www.mvnForum.com and http://www.MyVietnam.net in 
 - the footer of the pages MUST remain visible when the pages
 - are viewed on the internet or intranet.
 -
 - This program is free software; you can redistribute it and/or modify
 - it under the terms of the GNU General Public License as published by
 - the Free Software Foundation; either version 2 of the License, or
 - any later version.
 -
 - This program is distributed in the hope that it will be useful,
 - but WITHOUT ANY WARRANTY; without even the implied warranty of
 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 - GNU General Public License for more details.
 -
 - You should have received a copy of the GNU General Public License
 - along with this program; if not, write to the Free Software
 - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 -
 - Support can be obtained from support forums at:
 - http://www.mvnForum.com/mvnforum/index
 -
 - Correspondence and Marketing Questions can be sent to:
 - info at MyVietnam net
 -
 - @author: Minh Nguyen  
 - @author: Mai  Nguyen  
 --%>
<%@ page contentType="text/html;charset=utf-8" %>
<%@ page errorPage="fatalerror.jsp"%>
<%@ page import="net.myvietnam.mvncore.MVNCoreConfig" %>
<%@ page import="com.mvnforum.db.*" %>
<%@ page import="com.mvnforum.auth.AbstractPermission" %>
<%@ page import="com.mvnforum.MyUtil" %>

<%@ include file="inc_common.jsp"%>
<%@ include file="inc_doctype.jsp"%>
<fmt:bundle basename="mvnForum_i18n">
<mvn:html locale="${currentLocale}">
<mvn:head>
  <mvn:title><fmt:message key="mvnforum.common.forum.title_name"/> - <fmt:message key="mvnforum.admin.editmemberpermission.title"/></mvn:title>
<%@ include file="/mvnplugin/mvnforum/meta.jsp"%>
<link href="<%=onlineUser.getCssPath()%>" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%=contextPath%>/mvnplugin/mvnforum/js/overlib.js"></script>
</mvn:head>
<mvn:body>
<%@ include file="header.jsp"%>
<br/>

<%
MemberBean memberBean = (MemberBean)request.getAttribute("MemberBean");
int[] currentPerms = (int[])request.getAttribute("CurrentPermissions");
%>

<table width="95%" align="center">
  <tr class="nav">
    <td><img src="<%=contextPath%>/mvnplugin/mvnforum/images/nav.gif" alt="" /></td>
    <td width="100%" nowrap="nowrap">
    <a class="nav" href="<%=urlResolver.encodeURL(request, response, "index", URLResolverService.RENDER_URL, "view")%>"><fmt:message key="mvnforum.common.nav.index"/></a>&nbsp;&raquo;&nbsp;
    <a class="nav" href="<%=urlResolver.encodeURL(request, response, "index")%>"><fmt:message key="mvnforum.admin.index.title"/></a>&nbsp;&raquo;&nbsp;
    <a class="nav" href="<%=urlResolver.encodeURL(request, response, "usermanagement")%>"><fmt:message key="mvnforum.admin.usermanagement.title"/></a>&nbsp;&raquo;&nbsp;
    <fmt:message key="mvnforum.common.member"/>: <a class="nav" href="<%=urlResolver.encodeURL(request, response, "viewmember?memberid=" + memberBean.getMemberID())%>"><%=memberBean.getMemberName()%></a>&nbsp;&raquo;&nbsp;
    <fmt:message key="mvnforum.admin.editmemberpermission.title"/>
    </td>
  </tr>
</table>
<br/>
<mvn:cssrows>
<table class="tborder" width="95%" cellspacing="1" cellpadding="3" align="center">
  <tr class="portlet-section-header">
    <td colspan="2"><fmt:message key="mvnforum.admin.editmemberpermission.title"/>:</td>
  </tr>
  <tr class="<mvn:cssrow/>">
    <td width="30%"><fmt:message key="mvnforum.common.permission.current_member"/>:</td>
    <td><b><%=memberBean.getMemberName()%></b></td>
  </tr>
</table>
</mvn:cssrows>
<br/>
<form action="<%=urlResolver.encodeURL(request, response, "updatememberpermission" , URLResolverService.ACTION_URL)%>" method="post" name="submitform">
<%=urlResolver.generateFormAction(request, response, "updatememberpermission")%>
<input type="hidden" name="memberid" value="<%=memberBean.getMemberID()%>" />
<table class="tborder" width="95%" cellspacing="1" cellpadding="3" align="center">
  <tr class="portlet-section-header">
    <td><fmt:message key="mvnforum.common.permission"/></td>
    <td width="20%" align="center"><fmt:message key="mvnforum.common.permission.current_status"/></td>
    <td width="20%" align="center"><fmt:message key="mvnforum.common.action.add"/></td>
    <td width="20%" align="center"><fmt:message key="mvnforum.common.action.remove"/></td>
  </tr>
  <tr class="portlet-section-subheader">
    <td colspan="4" align="center"><b><fmt:message key="mvnforum.common.permission.combined_permission"/></b></td>
  </tr>
<%
int[] allCombinedPerms = AbstractPermission.globalCombinedPermissionArray;
%>
<mvn:cssrows>
<%
for (int i = 0; i < allCombinedPerms.length; i++) {
    int perm = allCombinedPerms[i];

    boolean havePerm = false;
    for (int j = 0; j < currentPerms.length; j++) {
        if (currentPerms[j] == perm) {
            havePerm = true;
            break;
        }
    }
%>
  <tr class="<mvn:cssrow/>">
    <td nowrap="nowrap">
      <%=AbstractPermission.getDescription(perm)%>
      <img src="<%=contextPath%>/mvnplugin/mvnforum/images/icon/icon_help.gif" onmouseover="return overlib('<%=MyUtil.getIndividualPermission(perm, true) %>')" onmouseout="return nd();" alt=""/>
    </td>
    <% if (havePerm == true) {%>
    <td align="center"><font color="#008000"><fmt:message key="mvnforum.common.yes"/></font></td>
    <td align="center"></td>
    <td align="center"><input type="checkbox" name="remove" value="<%=perm%>" class="noborder" /></td>
    <% } else {%>
    <td align="center"><font color="#FF0080"><fmt:message key="mvnforum.common.no"/></font></td>
    <td align="center"><input type="checkbox" name="add" value="<%=perm%>" class="noborder" /></td>
    <td align="center"></td>
    <% }%>
  </tr>
<%
} //for
%>
</mvn:cssrows>
  <tr class="portlet-section-subheader">
    <td colspan="4" align="center"><b><fmt:message key="mvnforum.common.permission.individual_permission"/></b></td>
  </tr>
<%
int[] allIndividualPerms = AbstractPermission.globalIndividualPermissionArray;
%>
<mvn:cssrows>
<%
for (int i = 0; i < allIndividualPerms.length; i++) {
    int perm = allIndividualPerms[i];

    boolean havePerm = false;
    for (int j = 0; j < currentPerms.length; j++) {
        if (currentPerms[j] == perm) {
            havePerm = true;
            break;
        }
    }
%>
  <tr class="<mvn:cssrow/>">
    <td nowrap="nowrap"><%=AbstractPermission.getDescription(perm)%></td>
    <% if (havePerm == true) {%>
    <td align="center"><font color="#008000"><fmt:message key="mvnforum.common.yes"/></font></td>
    <td align="center"></td>
    <td align="center"><input type="checkbox" name="remove" value="<%=perm%>" class="noborder" /></td>
    <% } else {%>
    <td align="center"><font color="#FF0080"><fmt:message key="mvnforum.common.no"/></font></td>
    <td align="center"><input type="checkbox" name="add" value="<%=perm%>" class="noborder" /></td>
    <td align="center"></td>
    <% }%>
  </tr>
<%
} //for
%>

</mvn:cssrows>
<% if (environmentService.isMVNCMS()) { %>
  <tr class="portlet-section-subheader">
    <td colspan="4" align="center"><b><fmt:message key="mvnforum.common.permission.individual_permission_for_cms"/></b></td>
  </tr>
<%
  int[] allCMSIndividualPerms = AbstractPermission.globalCMSIndividualPermissionArray;
%>
<mvn:cssrows>
<%
  for (int i = 0; i < allCMSIndividualPerms.length; i++) {
    int perm = allCMSIndividualPerms[i];

    boolean havePerm = false;
    for (int j = 0; j < currentPerms.length; j++) {
        if (currentPerms[j] == perm) {
            havePerm = true;
            break;
        }
    }
%>
  <tr class="<mvn:cssrow/>">
    <td nowrap="nowrap"><%=AbstractPermission.getDescription(perm)%></td>
    <% if (havePerm == true) {%>
    <td align="center"><font color="#008000"><fmt:message key="mvnforum.common.yes"/></font></td>
    <td align="center"></td>
    <td align="center"><input type="checkbox" name="remove" value="<%=perm%>" class="noborder" /></td>
    <% } else {%>
    <td align="center"><font color="#FF0080"><fmt:message key="mvnforum.common.no"/></font></td>
    <td align="center"><input type="checkbox" name="add" value="<%=perm%>" class="noborder" /></td>
    <td align="center"></td>
    <% }%>
  </tr>
<%
  } //for
%>
</mvn:cssrows>
<%
} //if enable CMS
%>

<% if (environmentService.isMVNAd()) { %>
  <tr class="portlet-section-subheader">
    <td colspan="4" align="center"><b><fmt:message key="mvnforum.common.permission.individual_permission_for_ads"/></b></td>
  </tr>
<%
  int[] allAdsIndividualPerms = AbstractPermission.globalAdsIndividualPermissionArray;
%>
<mvn:cssrows>
<%
  for (int i = 0; i < allAdsIndividualPerms.length; i++) {
    int perm = allAdsIndividualPerms[i];

    boolean havePerm = false;
    for (int j = 0; j < currentPerms.length; j++) {
        if (currentPerms[j] == perm) {
            havePerm = true;
            break;
        }
    }
%>
  <tr class="<mvn:cssrow/>">
    <td nowrap="nowrap"><%=AbstractPermission.getDescription(perm)%></td>
    <% if (havePerm == true) {%>
    <td align="center"><font color="#008000"><fmt:message key="mvnforum.common.yes"/></font></td>
    <td align="center"></td>
    <td align="center"><input type="checkbox" name="remove" value="<%=perm%>" class="noborder" /></td>
    <% } else {%>
    <td align="center"><font color="#FF0080"><fmt:message key="mvnforum.common.no"/></font></td>
    <td align="center"><input type="checkbox" name="add" value="<%=perm%>" class="noborder" /></td>
    <td align="center"></td>
    <% }%>
  </tr>
<%
  } //for
%>
</mvn:cssrows>
<%
} //if enable Ads
%>
<script language="JavaScript" type="text/javascript">
//<![CDATA[
function doAdd() {
  document.submitform.btnAction.value = "Add";
  document.submitform.submit();
}
function doRemove() {
  document.submitform.btnAction.value = "Remove";
  document.submitform.submit();
}
//]]>
</script>
<input name="btnAction" type="hidden" value="" />
  <tr class="portlet-section-footer">
    <td colspan="2">&nbsp;</td>
    <!--
    DO NOT use onclick="disabled=true; submit();" with 2 button below, because it will remove the 'name' attribute
    -->
    <td align="center"><input type="button" onclick="doAdd();" value="<fmt:message key="mvnforum.common.action.add"/>" class="portlet-form-button" /></td>
    <td align="center"><input type="button" onclick="doRemove();" value="<fmt:message key="mvnforum.common.action.remove"/>" class="portlet-form-button" /></td>
  </tr>
</table>
</form>

<br/>

<%@ include file="footer.jsp"%>
</mvn:body>
</mvn:html>
</fmt:bundle>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -