%@ page import=" org.opencms.workplace.*, org.opencms.workplace.tools.modules.* "%><% // initialize the workplace class CmsModulesDelete wp = new CmsModulesDelete(pageContext, request, response); //////////////////// start of switch statement switch (wp.getAction()) { case CmsDialog.ACTION_CANCEL: //////////////////// ACTION: cancel button pressed wp.actionCloseDialog(); break; //////////////////// ACTION: other actions handled outside of this JSP case CmsDialog.ACTION_CONFIRMED: wp.actionReport(); break; //////////////////// ACTION: show start dialog case CmsDialog.ACTION_DEFAULT: default: wp.setParamAction(CmsDialog.DIALOG_CONFIRMED); %><%= wp.htmlStart() %> <%= wp.bodyStart("dialog", "onLoad=\"init();\"") %> <%= wp.dialogStart() %> <%= wp.dialogContentStart(wp.getParamTitle()) %>
<%= wp.dialogEnd() %> <%= wp.bodyEnd() %> <%= wp.htmlEnd() %> <% } //////////////////// end of switch statement %>