com.liferay.wiki.web.internal.portlet.configuration.icon.PrintPagePortletConfigurationIcon.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.wiki.web.internal.portlet.configuration.icon.PrintPagePortletConfigurationIcon.java

Source

/**
 * 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.wiki.web.internal.portlet.configuration.icon;

import com.liferay.portal.kernel.language.LanguageUtil;
import com.liferay.portal.kernel.portlet.LiferayWindowState;
import com.liferay.portal.kernel.portlet.configuration.icon.BasePortletConfigurationIcon;
import com.liferay.portal.kernel.portlet.configuration.icon.PortletConfigurationIcon;
import com.liferay.portal.kernel.util.Constants;
import com.liferay.portal.kernel.util.PortalUtil;
import com.liferay.portal.kernel.util.StringBundler;
import com.liferay.portal.kernel.util.StringPool;
import com.liferay.wiki.constants.WikiPortletKeys;
import com.liferay.wiki.model.WikiNode;
import com.liferay.wiki.model.WikiPage;
import com.liferay.wiki.web.internal.portlet.action.ActionUtil;

import javax.portlet.PortletRequest;
import javax.portlet.PortletResponse;
import javax.portlet.PortletURL;

import org.osgi.service.component.annotations.Component;

/**
 * @author Roberto Daz
 */
@Component(immediate = true, property = { "javax.portlet.name=" + WikiPortletKeys.WIKI_ADMIN,
        "path=/wiki/view" }, service = PortletConfigurationIcon.class)
public class PrintPagePortletConfigurationIcon extends BasePortletConfigurationIcon {

    @Override
    public String getMessage(PortletRequest portletRequest) {
        return LanguageUtil.get(getResourceBundle(getLocale(portletRequest)), "print");
    }

    @Override
    public String getOnClick(PortletRequest portletRequest, PortletResponse portletResponse) {

        try {
            WikiNode node = ActionUtil.getNode(portletRequest);
            WikiPage page = ActionUtil.getPage(portletRequest);

            StringBundler sb = new StringBundler(5);

            sb.append("window.open('");

            PortletURL portletURL = PortalUtil.getControlPanelPortletURL(portletRequest, WikiPortletKeys.WIKI_ADMIN,
                    PortletRequest.RENDER_PHASE);

            portletURL.setParameter("mvcRenderCommandName", "/wiki/view");
            portletURL.setParameter("nodeName", node.getName());
            portletURL.setParameter("title", page.getTitle());
            portletURL.setParameter("viewMode", Constants.PRINT);
            portletURL.setWindowState(LiferayWindowState.POP_UP);

            sb.append(portletURL.toString());

            sb.append("', '', 'directories=0,height=480,left=80,location=1,");
            sb.append("menubar=1,resizable=1,scrollbars=yes,status=0,");
            sb.append("toolbar=0,top=180,width=640');");

            return sb.toString();
        } catch (Exception e) {
        }

        return StringPool.BLANK;
    }

    @Override
    public String getURL(PortletRequest portletRequest, PortletResponse portletResponse) {

        return "javascript:;";
    }

    @Override
    public double getWeight() {
        return 101;
    }

    @Override
    public boolean isShow(PortletRequest portletRequest) {
        return true;
    }

    @Override
    public boolean isToolTip() {
        return false;
    }

}