/** * 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. */ package com.liferay.knowledge.base.web.internal.portlet.configuration.icon; import com.liferay.knowledge.base.constants.KBPortletKeys; import com.liferay.knowledge.base.model.KBArticle; import com.liferay.portal.kernel.language.LanguageUtil; import com.liferay.portal.kernel.portlet.LiferayWindowState; import com.liferay.portal.kernel.portlet.configuration.icon.PortletConfigurationIcon; import com.liferay.portal.kernel.util.Constants; import com.liferay.portal.kernel.util.Portal; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import javax.portlet.PortletRequest; import javax.portlet.PortletResponse; import javax.portlet.PortletURL; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Ambrin Chaudhary */ @Component( immediate = true, property = { "javax.portlet.name=" + KBPortletKeys.KNOWLEDGE_BASE_ADMIN, "path=/admin/view_article.jsp", "path=/admin/view_articles.jsp" }, service = PortletConfigurationIcon.class ) public class PrintKBArticlePortletConfigurationIcon extends BaseGetKBArticlePortletConfigurationIcon { @Override public String getMessage(PortletRequest portletRequest) { return LanguageUtil.get( getResourceBundle(getLocale(portletRequest)), "print"); } @Override public String getOnClick( PortletRequest portletRequest, PortletResponse portletResponse) { try { StringBundler sb = new StringBundler(5); sb.append("window.open('"); PortletURL portletURL = _portal.getControlPanelPortletURL( portletRequest, KBPortletKeys.KNOWLEDGE_BASE_ADMIN, PortletRequest.RENDER_PHASE); portletURL.setParameter("mvcPath", "/admin/print_article.jsp"); KBArticle kbArticle = getKBArticle(portletRequest); portletURL.setParameter( "resourceClassNameId", String.valueOf(kbArticle.getClassNameId())); portletURL.setParameter( "resourcePrimKey", String.valueOf(kbArticle.getResourcePrimKey())); portletURL.setParameter("viewMode", Constants.PRINT); portletURL.setWindowState(LiferayWindowState.POP_UP); sb.append(portletURL.toString()); sb.append("', '', 'directories=no,height=640,location=no,"); sb.append("menubar=no,resizable=yes,scrollbars=yes,status=0,"); sb.append("toolbar=0,width=680');"); return sb.toString(); } catch (Exception e) { } return StringPool.BLANK; } @Override public String getURL( PortletRequest portletRequest, PortletResponse portletResponse) { return "javascript:;"; } @Override public double getWeight() { return 109; } @Override public boolean isShow(PortletRequest portletRequest) { return true; } @Reference private Portal _portal; }