
META-INF.resources.blogs_admin.view_entries.jsp Maven / Gradle / Ivy
<%--
/**
* 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="/blogs_admin/init.jsp" %>
<%
String entriesNavigation = ParamUtil.getString(request, "entriesNavigation");
long assetCategoryId = ParamUtil.getLong(request, "categoryId");
String assetTagName = ParamUtil.getString(request, "tag");
String displayStyle = ParamUtil.getString(request, "displayStyle");
if (Validator.isNull(displayStyle)) {
displayStyle = portalPreferences.getValue(BlogsPortletKeys.BLOGS_ADMIN, "entries-display-style", "icon");
}
else {
portalPreferences.setValue(BlogsPortletKeys.BLOGS_ADMIN, "entries-display-style", displayStyle);
request.setAttribute(WebKeys.SINGLE_PAGE_APPLICATION_CLEAR_CACHE, Boolean.TRUE);
}
int cur = ParamUtil.getInteger(request, SearchContainer.DEFAULT_CUR_PARAM);
int delta = ParamUtil.getInteger(request, SearchContainer.DEFAULT_DELTA_PARAM);
String orderByCol = ParamUtil.getString(request, "orderByCol", "title");
String orderByType = ParamUtil.getString(request, "orderByType", "asc");
PortletURL navigationPortletURL = renderResponse.createRenderURL();
navigationPortletURL.setParameter("mvcRenderCommandName", "/blogs/view");
if (delta > 0) {
navigationPortletURL.setParameter("delta", String.valueOf(delta));
}
navigationPortletURL.setParameter("orderBycol", orderByCol);
navigationPortletURL.setParameter("orderByType", orderByType);
PortletURL portletURL = PortletURLUtil.clone(navigationPortletURL, liferayPortletResponse);
portletURL.setParameter("entriesNavigation", entriesNavigation);
PortletURL displayStyleURL = PortletURLUtil.clone(portletURL, liferayPortletResponse);
if (cur > 0) {
displayStyleURL.setParameter("cur", String.valueOf(cur));
}
String keywords = ParamUtil.getString(request, "keywords");
%>
<%@ include file="/blogs_admin/entry_search_results.jspf" %>
<%@ include file="/blogs_admin/entry_search_columns.jspf" %>
function deleteEntries() {
if (<%= TrashUtil.isTrashEnabled(scopeGroupId) %> || confirm('<%= UnicodeLanguageUtil.get(request, "are-you-sure-you-want-to-delete-the-selected-entries") %>')) {
var form = AUI.$(document. fm);
form.attr('method', 'post');
form.fm('<%= Constants.CMD %>').val('<%= TrashUtil.isTrashEnabled(scopeGroupId) ? Constants.MOVE_TO_TRASH : Constants.DELETE %>');
form.fm('deleteEntryIds').val(Liferay.Util.listCheckedExcept(form, ' allRowIds'));
submitForm(form, ' ');
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy