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.
45 righe
1.8 KiB
45 righe
1.8 KiB
5 anni fa
|
|
||
|
<%@page import="com.liferay.portal.util.PortalUtil"%>
|
||
|
<%@page import="com.liferay.portlet.PortletURLUtil"%>
|
||
|
<%@page import="javax.portlet.PortletURL"%>
|
||
|
<%@page import="javax.portlet.PortletMode"%>
|
||
|
<%@page import="javax.portlet.WindowState"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.ParamUtil"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.StringUtil"%>
|
||
|
<%@page import="java.util.ArrayList"%>
|
||
|
<%@page import="java.util.List"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.Validator"%>
|
||
|
<%@page import="com.liferay.portal.kernel.util.HtmlUtil"%>
|
||
|
|
||
|
<%@page import="com.liferay.portal.kernel.util.StringPool"%>
|
||
|
|
||
|
<%@ 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 uri="http://liferay.com/tld/ddm" prefix="liferay-ddm" %>
|
||
|
|
||
|
<%@page import="it.tref.liferay.portos.mailmanager.shared.util.MailManagerConstants"%>
|
||
|
|
||
|
<%@ page contentType="text/html; charset=UTF-8" %>
|
||
|
|
||
|
<%@page import="com.liferay.portal.kernel.util.GetterUtil"%>
|
||
|
|
||
|
<liferay-theme:defineObjects />
|
||
|
<portlet:defineObjects />
|
||
|
|
||
|
<%
|
||
|
PortletMode portletMode = liferayPortletRequest.getPortletMode();
|
||
|
WindowState windowState = liferayPortletRequest.getWindowState();
|
||
|
|
||
|
PortletURL currentURLObj = PortletURLUtil.getCurrent(liferayPortletRequest, liferayPortletResponse);
|
||
|
|
||
|
String currentURL = currentURLObj.toString();
|
||
|
|
||
|
%>
|