/** * 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.layout.admin.web.internal.theme.contributor; import com.liferay.layout.admin.web.internal.control.menu.CustomizationSettingsProductNavigationControlMenuEntry; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.template.TemplateContextContributor; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.StringPool; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Jürgen Kappler */ @Component( immediate = true, property = {"type=" + TemplateContextContributor.TYPE_THEME}, service = TemplateContextContributor.class ) public class LayoutCustomizationTemplateContextContributor implements TemplateContextContributor { @Override public void prepare( Map<String, Object> contextObjects, HttpServletRequest request) { try { if (_customizationSettingsProductNavigationControlMenuEntry.isShow( request)) { StringBuilder sb = new StringBuilder(3); sb.append( GetterUtil.getString(contextObjects.get("bodyCssClass"))); sb.append(StringPool.SPACE); sb.append("has-customization-menu"); contextObjects.put("bodyCssClass", sb.toString()); } } catch (PortalException pe) { _log.error(pe, pe); } } @Reference(unbind = "-") protected void setCustomizationSettingsProductNavigationControlMenuEntry( CustomizationSettingsProductNavigationControlMenuEntry customizationSettingsProductNavigationControlMenuEntry) { _customizationSettingsProductNavigationControlMenuEntry = customizationSettingsProductNavigationControlMenuEntry; } private static final Log _log = LogFactoryUtil.getLog( LayoutCustomizationTemplateContextContributor.class); private CustomizationSettingsProductNavigationControlMenuEntry _customizationSettingsProductNavigationControlMenuEntry; }