
META-INF.resources.admin.common.move_object.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="/admin/common/init.jsp" %>
<%
int status = (Integer)request.getAttribute(KBWebKeys.KNOWLEDGE_BASE_STATUS);
long kbArticleClassNameId = PortalUtil.getClassNameId(KBArticleConstants.getClassName());
resourceClassNameId = ParamUtil.getLong(request, "resourceClassNameId");
resourcePrimKey = ParamUtil.getLong(request, "resourcePrimKey");
long parentResourceClassNameId = ParamUtil.getLong(request, "parentResourceClassNameId");
long parentResourcePrimKey = ParamUtil.getLong(request, "parentResourcePrimKey");
String title = null;
String parentTitle = null;
double priority = KBArticleConstants.DEFAULT_PRIORITY;
if (resourceClassNameId == kbArticleClassNameId) {
KBArticle kbArticle = KBArticleServiceUtil.fetchLatestKBArticle(resourcePrimKey, status);
title = kbArticle.getTitle();
parentTitle = kbArticle.getParentTitle(locale, status);
priority = kbArticle.getPriority();
}
else {
KBFolder kbFolder = KBFolderServiceUtil.getKBFolder(resourcePrimKey);
title = kbFolder.getName();
parentTitle = kbFolder.getParentTitle(locale);
}
boolean portletTitleBasedNavigation = GetterUtil.getBoolean(portletConfig.getInitParameter("portlet-title-based-navigation"));
if (portletTitleBasedNavigation) {
portletDisplay.setShowBackIcon(true);
portletDisplay.setURLBack(redirect);
renderResponse.setTitle(title);
}
%>
>
AUI.$('# selectKBObjectButton').on(
'click',
function(event) {
Liferay.Util.selectEntity(
{
dialog: {
constrain: true,
destroyOnHide: true,
modal: true,
width: 600
},
id: ' selectKBObject',
title: ' ',
uri: '<%= selectKBObjectURL %>'
},
function(event) {
document. fm. parentPriority.value = event.priority;
document. fm. parentResourceClassNameId.value = event.resourceclassnameid;
var folderData = {
idString: 'parentResourcePrimKey',
idValue: event.resourceprimkey,
nameString: 'parentTitle',
nameValue: event.title
};
Liferay.Util.selectFolder(folderData, ' ');
}
);
}
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy