indexsource-overview.jsp

来自「找了很久才找到到源代码」· JSP 代码 · 共 29 行

JSP
29
字号
<%@ page import="org.opencms.workplace.tools.searchindex.*, org.opencms.jsp.CmsJspActionElement, org.opencms.workplace.CmsWidgetDialog, org.opencms.workplace.list.A_CmsListDialog" %>
<% 
  CmsJspActionElement actionElement = new CmsJspActionElement(pageContext, request, response);
  CmsWidgetDialog wpWidget = new CmsOverviewIndexSourceDialog(actionElement);

  // perform the widget actions   
  wpWidget.displayDialog(true);
  if (wpWidget.isForwarded()) {
    return;
  }
 
  // Document types list
  A_CmsListDialog listDoctypes = new CmsDocumentTypeList(actionElement);      
  // perform the list actions 
  listDoctypes.displayDialog(true);

  // Search resources list
  A_CmsListDialog listResources = new CmsSearchResourcesList(actionElement);      
  // perform the list actions 
  listResources.displayDialog(true);

  // write the content of widget dialog
  wpWidget.writeDialog();
  // write the content of list dialogs
  listDoctypes.writeDialog();
  listResources.writeDialog();
%>

⌨️ 快捷键说明

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