/** * 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.taglib.aui; import com.liferay.portal.kernel.util.Validator; import com.liferay.portal.kernel.workflow.WorkflowConstants; import com.liferay.taglib.aui.base.BaseWorkflowStatusTag; import javax.servlet.http.HttpServletRequest; /** * @author Julio Camarero * @author Jorge Ferrer * @author Brian Wing Shun Chan */ public class WorkflowStatusTag extends BaseWorkflowStatusTag { @Override protected String getPage() { String markupView = getMarkupView(); if (Validator.isNotNull(markupView)) { return "/html/taglib/aui/workflow_status/" + markupView + "/page.jsp"; } return "/html/taglib/aui/workflow_status/page.jsp"; } @Override protected boolean isCleanUpSetAttributes() { return _CLEAN_UP_SET_ATTRIBUTES; } @Override protected void setAttributes(HttpServletRequest request) { super.setAttributes(request); Object bean = getBean(); if (bean == null) { bean = pageContext.getAttribute("aui:model-context:bean"); } String helpMessage = getHelpMessage(); if (Validator.isNull(helpMessage) && (getStatus() == WorkflowConstants.STATUS_APPROVED) && Validator.isNotNull(getVersion())) { helpMessage = _HELP_MESSAGE_DEFAULT; } Class<?> model = getModel(); if (model == null) { model = (Class<?>)pageContext.getAttribute( "aui:model-context:model"); } setNamespacedAttribute(request, "bean", bean); setNamespacedAttribute(request, "helpMessage", helpMessage); setNamespacedAttribute(request, "model", model); } private static final boolean _CLEAN_UP_SET_ATTRIBUTES = true; private static final String _HELP_MESSAGE_DEFAULT = "a-new-version-is-created-automatically-if-this-content-is-modified"; }