/** * 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.dynamic.data.lists.form.web.internal.portlet.configuration.icon; 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.util.ParamUtil; import javax.portlet.PortletRequest; import javax.portlet.PortletResponse; import org.osgi.service.component.annotations.Component; /** * @author Marcellus Tavares */ @Component( immediate = true, property = { "javax.portlet.name=" + com.liferay.dynamic.data.lists.form.web.constants.DDLFormPortletKeys.DYNAMIC_DATA_LISTS_FORM_ADMIN, "path=/admin/edit_record_set.jsp" }, service = PortletConfigurationIcon.class ) public class DDLRecordSetSettingsPortletConfigurationIcon extends BasePortletConfigurationIcon { @Override public String getMessage(PortletRequest portletRequest) { return LanguageUtil.get( getResourceBundle(getLocale(portletRequest)), "settings"); } @Override public String getURL( PortletRequest portletRequest, PortletResponse portletResponse) { return "javascript:Liferay.DDL.openSettings(" + String.valueOf(getRecordSetId(portletRequest)) + ")"; } @Override public double getWeight() { return 110.0; } @Override public boolean isShow(PortletRequest portletRequest) { return true; } @Override public boolean isToolTip() { return false; } @Override public boolean isUseDialog() { return false; } protected long getRecordSetId(PortletRequest portletRequest) { return ParamUtil.getLong(portletRequest, "recordSetId"); } }