blob: b9e63b071ee2e8776c928d6daa3e611324d74620 [file] [log] [blame]
<%--
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
--%>
<c:choose>
<c:when test="<%= (fileShortcut == null) %>">
<c:if test="<%= showActions && DLFileEntryPermission.contains(permissionChecker, fileEntry, ActionKeys.PERMISSIONS) %>">
<liferay-security:permissionsURL
modelResource="<%= DLFileEntryConstants.getClassName() %>"
modelResourceDescription="<%= HtmlUtil.unescape(fileEntry.getTitle()) %>"
redirect="<%= currentURL %>"
resourcePrimKey="<%= String.valueOf(fileEntry.getFileEntryId()) %>"
var="permissionsURL"
windowState="<%= LiferayWindowState.POP_UP.toString() %>"
/>
<liferay-ui:icon
image="permissions"
method="get"
url="<%= permissionsURL %>"
useDialog="<%= true %>"
/>
</c:if>
</c:when>
<c:otherwise>
<c:if test="<%= showActions && DLFileShortcutPermission.contains(permissionChecker, fileShortcut, ActionKeys.PERMISSIONS) %>">
<liferay-security:permissionsURL
modelResource="<%= DLFileShortcut.class.getName() %>"
modelResourceDescription="<%= fileEntry.getTitle() %>"
redirect="<%= currentURL %>"
resourcePrimKey="<%= String.valueOf(fileShortcut.getFileShortcutId()) %>"
var="shortcutPermissionsURL"
windowState="<%= LiferayWindowState.POP_UP.toString() %>"
/>
<liferay-ui:icon
image="permissions"
method="get"
url="<%= shortcutPermissionsURL %>"
useDialog="<%= true %>"
/>
</c:if>
</c:otherwise>
</c:choose>