linkrelation_target.jsp

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

JSP
22
字号
<%@ page import="org.opencms.workplace.commons.CmsResourceLinkRelationList" %><%	
%><%@ page import="org.opencms.jsp.CmsJspActionElement" %><%	
%><%@ page import="org.opencms.workplace.commons.CmsResourceInfoDialog" %><%	
	// initialize the widget dialog
	CmsResourceInfoDialog wpWidget = new CmsResourceInfoDialog(pageContext, request, response);
	// perform the widget actions   
	wpWidget.displayDialog(true);
	if (wpWidget.isForwarded()) {
		return;
	}
	// initialize the list dialog
	CmsResourceLinkRelationList wpList = new CmsResourceLinkRelationList(new CmsJspActionElement(pageContext, request, response), true);
	// perform the list actions 
	wpList.displayDialog(true);
	if (wpList.isForwarded()) {
		return;
	}
	// write the content of widget dialog
	wpWidget.writeDialog();
	// write the content of list dialog
	wpList.writeDialog();
%>

⌨️ 快捷键说明

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