Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
61 righe
2.7 KiB
61 righe
2.7 KiB
5 anni fa
|
<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||
|
|
||
|
<%@page import="com.liferay.portal.kernel.util.TimeZoneUtil"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.LocaleUtil"%>
|
||
|
<%@page import="java.text.Format"%>
|
||
|
<%@page import="java.text.MessageFormat"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.FastDateFormatFactoryUtil"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.StringUtil"%>
|
||
|
<%@page import="java.util.Arrays"%>
|
||
|
<%@page import="javax.portlet.WindowState"%>
|
||
|
<%@page import="javax.portlet.PortletMode"%>
|
||
|
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||
|
|
||
|
<%@taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet"%>
|
||
|
|
||
|
<%@taglib uri="http://liferay.com/tld/aui" prefix="aui"%>
|
||
|
<%@taglib uri="http://liferay.com/tld/portlet" prefix="liferay-portlet"%>
|
||
|
<%@taglib uri="http://liferay.com/tld/security" prefix="liferay-security"%>
|
||
|
<%@taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme"%>
|
||
|
<%@taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui"%>
|
||
|
<%@taglib uri="http://liferay.com/tld/util" prefix="liferay-util"%>
|
||
|
<%@ taglib prefix="aui" uri="http://liferay.com/tld/aui"%>
|
||
|
|
||
|
<%@page import="com.liferay.portal.kernel.dao.search.ResultRow"%>
|
||
|
<%@page import="com.liferay.portal.kernel.template.TemplateHandler"%>
|
||
|
<%@page import="com.liferay.portal.kernel.template.TemplateHandlerRegistryUtil"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.GetterUtil"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.ParamUtil"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.StringPool"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.WebKeys"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.TextFormatter"%>
|
||
|
<%@page import="com.liferay.portal.model.Group"%>
|
||
|
<%@page import="com.liferay.portlet.portletdisplaytemplate.util.PortletDisplayTemplateUtil"%>
|
||
|
<%@page import="com.liferay.portal.theme.ThemeDisplay"%>
|
||
|
<%@page import="com.liferay.portal.util.PortalUtil"%>
|
||
|
<%@ page import="com.liferay.portlet.PortletPreferencesFactoryUtil"%>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.Validator"%>
|
||
|
<%@ page import="com.liferay.portal.kernel.language.LanguageUtil"%>
|
||
|
|
||
|
<%@ page import="javax.portlet.PortletPreferences"%>
|
||
|
|
||
|
|
||
|
<%@page import="java.text.SimpleDateFormat"%>
|
||
|
<%@page import="java.util.List"%>
|
||
|
|
||
|
|
||
|
<liferay-theme:defineObjects />
|
||
|
|
||
|
<portlet:defineObjects />
|
||
|
|
||
|
|
||
|
<%
|
||
|
Format dateFormatDate = FastDateFormatFactoryUtil.getDate(LocaleUtil.ITALY,
|
||
|
TimeZoneUtil.getTimeZone("Europe/Rome"));
|
||
|
Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(LocaleUtil.ITALY,
|
||
|
TimeZoneUtil.getTimeZone("Europe/Rome"));
|
||
|
WindowState windowState = renderRequest.getWindowState();
|
||
|
PortletMode portletMode = renderRequest.getPortletMode();
|
||
|
|
||
|
String currentURL = PortalUtil.getCurrentURL(liferayPortletRequest);
|
||
|
%>
|