All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.select_template.jsp Maven / Gradle / Ivy

There is a newer version: 5.0.110
Show newest version
<%--
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */
--%>

<%@ include file="/init.jsp" %>

<%
long templateId = ParamUtil.getLong(request, "templateId");

long classNameId = ParamUtil.getLong(request, "classNameId");
long classPK = ParamUtil.getLong(request, "classPK");
String eventName = ParamUtil.getString(request, "eventName", "selectTemplate");

DDMStructure structure = null;

long structureClassNameId = PortalUtil.getClassNameId(DDMStructure.class);

if ((classPK > 0) && (structureClassNameId == classNameId)) {
	structure = DDMStructureLocalServiceUtil.getStructure(classPK);
}
%>






	
		
			
				

				
					
						

							<%
							Map data = new HashMap<>();

							if (ddmDisplay.isShowConfirmSelectTemplate()) {
								data.put("confirm-selection", Boolean.TRUE.toString());
								data.put("confirm-selection-message", ddmDisplay.getConfirmSelectTemplateMessage(locale));
							}

							data.put("ddmtemplateid", template.getTemplateId());
							data.put("ddmtemplatekey", template.getTemplateKey());
							data.put("description", template.getDescription(locale));
							data.put("imageurl", template.getTemplateImageURL(themeDisplay));
							data.put("name", template.getName(locale));
							%>

							
								<%= HtmlUtil.escape(template.getName(locale)) %>
							
						
						
							<%= HtmlUtil.escape(template.getName(locale)) %>
						
					
				

				

				
			

			
		
	



	Liferay.Util.focusFormField(
		document.searchForm.keywords
	);



	Liferay.Util.selectEntityHandler(
		'#selectTemplateFm',
		'<%= HtmlUtil.escapeJS(eventName) %>'
	);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy