com.liferay.portlet.configuration.icon.print.internal.PrintPortletConfigurationIcon.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.portlet.configuration.icon.print.internal.PrintPortletConfigurationIcon.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.portlet.configuration.icon.print.internal;

import com.liferay.portal.kernel.language.LanguageUtil;
import com.liferay.portal.kernel.portlet.configuration.icon.BasePortletConfigurationIcon;
import com.liferay.portal.kernel.portlet.configuration.icon.PortletConfigurationIcon;
import com.liferay.portal.kernel.theme.PortletDisplay;
import com.liferay.portal.kernel.theme.ThemeDisplay;
import com.liferay.portal.kernel.util.WebKeys;

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

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

/**
 * @author Eudaldo Alonso
 */
@Component(immediate = true, service = PortletConfigurationIcon.class)
public class PrintPortletConfigurationIcon extends BasePortletConfigurationIcon {

    @Override
    public String getCssClass() {
        return "portlet-print portlet-print-icon";
    }

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

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

        ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY);

        PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();

        return "location.href = '".concat(portletDisplay.getURLPrint()).concat("'; return false;");
    }

    @Override
    public String getTarget() {
        return "_blank";
    }

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

        ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY);

        PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();

        return portletDisplay.getURLPrint();
    }

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

    @Override
    public boolean isShow(PortletRequest portletRequest) {
        ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY);

        PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();

        return portletDisplay.isShowPrintIcon();
    }

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

}