
META-INF.resources.document_library.info_panel.jsp Maven / Gradle / Ivy
The newest version!
<%--
/**
* Copyright (c) 2000-present 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.
*/
--%>
<%@ include file="/document_library/init.jsp" %>
<%
long repositoryId = GetterUtil.getLong((String)request.getAttribute("view.jsp-repositoryId"), ParamUtil.getLong(request, "repositoryId"));
request.setAttribute("view.jsp-repositoryId", String.valueOf(repositoryId));
List folders = (List)request.getAttribute(WebKeys.DOCUMENT_LIBRARY_FOLDERS);
List fileEntries = (List)request.getAttribute(WebKeys.DOCUMENT_LIBRARY_FILE_ENTRIES);
List fileShortcuts = (List)request.getAttribute(WebKeys.DOCUMENT_LIBRARY_FILE_SHORTCUTS);
Map infoPanelToggleData = new HashMap();
infoPanelToggleData.put("toggle", liferayPortletResponse.getNamespace() + "infoPanelId");
if (ListUtil.isEmpty(folders) && ListUtil.isEmpty(fileEntries) && ListUtil.isEmpty(fileShortcuts)) {
long folderId = GetterUtil.getLong((String)request.getAttribute("view.jsp-folderId"), ParamUtil.getLong(request, "folderId"));
folders = new ArrayList();
Folder folder = (Folder)request.getAttribute("view.jsp-folder");
if (folder != null) {
folders.add(folder);
}
else if (folderId != DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) {
folders.add(DLAppLocalServiceUtil.getFolder(folderId));
}
else {
folders.add(null);
}
}
%>
<%
Folder folder = folders.get(0);
request.setAttribute("info_panel.jsp-folder", folder);
%>
<%
FileEntry fileEntry = fileEntries.get(0);
request.setAttribute("info_panel.jsp-fileEntry", fileEntry);
%>
<%
FileShortcut fileShortcut = fileShortcuts.get(0);
request.setAttribute("info_panel.jsp-fileShortcut", fileShortcut);
%>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy