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

📄 confirm_content_notification.jsp

📁 找了很久才找到到源代码
💻 JSP
字号:
<%@ page import="org.opencms.workplace.CmsDialog,
                 org.opencms.file.*,
                 org.opencms.util.CmsUUID,
                 org.opencms.i18n.CmsEncoder,
                 org.opencms.main.CmsException,
                 org.opencms.db.CmsUserSettings,
                 org.opencms.notification.*,
                 org.opencms.jsp.CmsJspActionElement,
                 java.util.*"
%>

<%
    CmsJspActionElement jsp = new CmsJspActionElement(pageContext, request, response);
    CmsDialog wp = new CmsDialog(jsp);

switch (wp.getAction()) {

case CmsDialog.ACTION_CANCEL:
//////////////////// ACTION: cancel button pressed
        wp.getSettings().getFrameUris().put("body", "/system/workplace/views/explorer/explorer_fs.jsp"); 
	wp.actionCloseDialog();

break;

default:
%>

    <%= wp.htmlStart() %>
    <%= wp.bodyStart("Content Notification Confirmation") %>
    <%= wp.dialogStart() %>
    <%= wp.dialogContentStart("OpenCms content notification") %>
    <form name="main" class="nomargin" action="<%= wp.getDialogUri() %>" method="post">
    <%= wp.paramsAsHidden() %>
    <input type="hidden" name="<%= wp.PARAM_FRAMENAME %>" value="">
    <input type="hidden" name="<%= wp.PARAM_ACTION %>" value="<%= CmsDialog.ACTION_CANCEL %>">
<%
    CmsObject cms = wp.getCms();
    String resource = cms.getRequestContext().removeSiteRoot(CmsEncoder.decode(request.getParameter("resource")));
    String cause = request.getParameter("cause");
    try {
        CmsUUID userId = new CmsUUID(request.getParameter("userId")); 
        CmsUser responsible = cms.readUser(userId);
        // update additional info "confirmed resources" of responsible
        List confirmedResources;
        confirmedResources = (List)responsible.getAdditionalInfo(CmsUserSettings.ADDITIONAL_INFO_CONFIRMED_RESOURCES);
        if (confirmedResources == null) {
            confirmedResources = new ArrayList();
            responsible.setAdditionalInfo(CmsUserSettings.ADDITIONAL_INFO_CONFIRMED_RESOURCES, confirmedResources);
        }
        CmsNotificationCause resourceInfo = new CmsNotificationCause(cms.readResource(resource, CmsResourceFilter.IGNORE_EXPIRATION).getStructureId(), Integer.parseInt(cause));
        if (!confirmedResources.contains(resourceInfo)) {
            confirmedResources.add(resourceInfo);
        }
        cms.writeUser(responsible);
    } catch (Exception e) {
        throw new CmsException(org.opencms.notification.Messages.get().container(org.opencms.notification.Messages.ERR_CONFIRM_RESOURCE_1, resource), e);
    }
    String key = null;
    switch (Integer.parseInt(cause)) {
        case CmsExtendedNotificationCause.RESOURCE_EXPIRES:
            key = org.opencms.workplace.commons.Messages.GUI_CONFIRMED_EXPIRATION_1; break;
        case CmsExtendedNotificationCause.RESOURCE_RELEASE:
            key = org.opencms.workplace.commons.Messages.GUI_CONFIRMED_RELEASE_1; break;
        case CmsExtendedNotificationCause.RESOURCE_OUTDATED:
            key = org.opencms.workplace.commons.Messages.GUI_CONFIRMED_OUTDATED_RESOURCE_1; break;
        case CmsExtendedNotificationCause.RESOURCE_UPDATE_REQUIRED:
            key = org.opencms.workplace.commons.Messages.GUI_CONFIRMED_NOTIFICATION_INTERVAL_1; break;
    }
%>   

    <%= wp.key(key, new Object[]{resource}) %>
    <%= wp.dialogContentEnd() %>
    <%= wp.dialogButtonsClose() %>
</form>
    <%= wp.dialogEnd() %>
    <%= wp.bodyEnd() %>
    <%= wp.htmlEnd() %>

<% } %>

⌨️ 快捷键说明

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