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

📄 indexsource-overview.jsp

📁 找了很久才找到到源代码
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -