/modules/apps/web-experience/trash/trash-web/src/main/resources/META-INF/resources/init.jsp

http://github.com/liferay/liferay-portal · JavaServer Pages · 96 lines · 67 code · 16 blank · 13 comment · 0 complexity · 5d910b40dd8d700b1b3148f696574e73 MD5 · raw file

  1. <%--
  2. /**
  3. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  4. *
  5. * This library is free software; you can redistribute it and/or modify it under
  6. * the terms of the GNU Lesser General Public License as published by the Free
  7. * Software Foundation; either version 2.1 of the License, or (at your option)
  8. * any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  12. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  13. * details.
  14. */
  15. --%>
  16. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  17. <%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
  18. <%@ taglib uri="http://liferay.com/tld/aui" prefix="aui" %><%@
  19. taglib uri="http://liferay.com/tld/frontend" prefix="liferay-frontend" %><%@
  20. taglib uri="http://liferay.com/tld/portlet" prefix="liferay-portlet" %><%@
  21. taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %><%@
  22. taglib uri="http://liferay.com/tld/trash" prefix="liferay-trash" %><%@
  23. taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %><%@
  24. taglib uri="http://liferay.com/tld/util" prefix="liferay-util" %>
  25. <%@ page import="com.liferay.portal.kernel.dao.search.EmptyOnClickRowChecker" %><%@
  26. page import="com.liferay.portal.kernel.dao.search.ResultRow" %><%@
  27. page import="com.liferay.portal.kernel.exception.TrashPermissionException" %><%@
  28. page import="com.liferay.portal.kernel.language.LanguageUtil" %><%@
  29. page import="com.liferay.portal.kernel.language.UnicodeLanguageUtil" %><%@
  30. page import="com.liferay.portal.kernel.portlet.LiferayWindowState" %><%@
  31. page import="com.liferay.portal.kernel.search.BaseModelSearchResult" %><%@
  32. page import="com.liferay.portal.kernel.search.Sort" %><%@
  33. page import="com.liferay.portal.kernel.search.SortFactoryUtil" %><%@
  34. page import="com.liferay.portal.kernel.security.permission.ResourceActionsUtil" %><%@
  35. page import="com.liferay.portal.kernel.servlet.SessionMessages" %><%@
  36. page import="com.liferay.portal.kernel.trash.TrashHandler" %><%@
  37. page import="com.liferay.portal.kernel.trash.TrashHandlerRegistryUtil" %><%@
  38. page import="com.liferay.portal.kernel.trash.TrashRenderer" %><%@
  39. page import="com.liferay.portal.kernel.util.Constants" %><%@
  40. page import="com.liferay.portal.kernel.util.FastDateFormatFactoryUtil" %><%@
  41. page import="com.liferay.portal.kernel.util.HtmlUtil" %><%@
  42. page import="com.liferay.portal.kernel.util.ListUtil" %><%@
  43. page import="com.liferay.portal.kernel.util.ParamUtil" %><%@
  44. page import="com.liferay.portal.kernel.util.PortalUtil" %><%@
  45. page import="com.liferay.portal.kernel.util.StringPool" %><%@
  46. page import="com.liferay.portal.kernel.util.StringUtil" %><%@
  47. page import="com.liferay.portal.kernel.util.Time" %><%@
  48. page import="com.liferay.portal.kernel.util.Validator" %><%@
  49. page import="com.liferay.portal.kernel.util.WebKeys" %><%@
  50. page import="com.liferay.portlet.trash.model.impl.TrashEntryImpl" %><%@
  51. page import="com.liferay.trash.kernel.exception.RestoreEntryException" %><%@
  52. page import="com.liferay.trash.kernel.exception.TrashEntryException" %><%@
  53. page import="com.liferay.trash.kernel.model.TrashEntry" %><%@
  54. page import="com.liferay.trash.kernel.model.TrashEntryList" %><%@
  55. page import="com.liferay.trash.kernel.service.TrashEntryLocalServiceUtil" %><%@
  56. page import="com.liferay.trash.kernel.service.TrashEntryServiceUtil" %><%@
  57. page import="com.liferay.trash.kernel.util.TrashUtil" %><%@
  58. page import="com.liferay.trash.web.internal.constants.TrashWebKeys" %><%@
  59. page import="com.liferay.trash.web.internal.dao.search.TrashResultRowSplitter" %><%@
  60. page import="com.liferay.trash.web.internal.display.context.TrashContainerModelDisplayContext" %><%@
  61. page import="com.liferay.trash.web.internal.display.context.TrashDisplayContext" %><%@
  62. page import="com.liferay.trash.web.internal.search.EntrySearch" %><%@
  63. page import="com.liferay.trash.web.internal.search.EntrySearchTerms" %>
  64. <%@ page import="java.text.Format" %>
  65. <%@ page import="java.util.HashMap" %><%@
  66. page import="java.util.List" %><%@
  67. page import="java.util.Map" %>
  68. <%@ page import="javax.portlet.PortletURL" %><%@
  69. page import="javax.portlet.WindowState" %>
  70. <liferay-frontend:defineObjects />
  71. <liferay-theme:defineObjects />
  72. <portlet:defineObjects />
  73. <%
  74. TrashDisplayContext trashDisplayContext = new TrashDisplayContext(request, liferayPortletResponse);
  75. Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone);
  76. String trashEntriesMaxAgeTimeDescription = LanguageUtil.getTimeDescription(locale, TrashUtil.getMaxAge(themeDisplay.getScopeGroup()) * Time.MINUTE, true);
  77. String description = LanguageUtil.get(request, "javax.portlet.description.com_liferay_trash_web_portlet_TrashPortlet") + LanguageUtil.format(request, "entries-that-have-been-in-the-recycle-bin-for-more-than-x-are-automatically-deleted", StringUtil.toLowerCase(trashEntriesMaxAgeTimeDescription), false);
  78. portletDisplay.setDescription(description);
  79. %>
  80. <%@ include file="/init-ext.jsp" %>