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.
62 righe
2.8 KiB
62 righe
2.8 KiB
5 anni fa
|
<%@page import="java.text.Format"%>
|
||
|
<%@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" %>
|
||
|
|
||
|
<%@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" %>
|
||
|
|
||
|
<%@ page import="com.liferay.portal.kernel.dao.orm.QueryUtil" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.dao.search.DisplayTerms" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.dao.search.ResultRow" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.dao.search.RowChecker" %>
|
||
|
|
||
|
<%@ page import="com.liferay.portal.kernel.dao.search.SearchContainer" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.OrderByComparator" %>
|
||
|
<%@ page import="com.liferay.portal.kernel.util.OrderByComparatorFactoryUtil" %>
|
||
|
|
||
|
<liferay-theme:defineObjects />
|
||
|
|
||
|
<portlet:defineObjects />
|
||
|
|
||
|
|
||
|
<%
|
||
|
|
||
|
Format dateFormatDate = new SimpleDateFormat("dd/MM/yyyy");
|
||
|
Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone);
|
||
|
WindowState windowState = renderRequest.getWindowState();
|
||
|
PortletMode portletMode = renderRequest.getPortletMode();
|
||
|
String currentURL = PortalUtil.getCurrentURL(liferayPortletRequest);
|
||
|
|
||
|
%>
|