Example usage for com.liferay.portal.kernel.portletdisplaytemplate PortletDisplayTemplateManagerUtil getDisplayStyle

List of usage examples for com.liferay.portal.kernel.portletdisplaytemplate PortletDisplayTemplateManagerUtil getDisplayStyle

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.portletdisplaytemplate PortletDisplayTemplateManagerUtil getDisplayStyle.

Prototype

public static String getDisplayStyle(String ddmTemplateKey) 

Source Link

Usage

From source file:com.liferay.site.navigation.taglib.servlet.taglib.NavigationMenuTag.java

License:Open Source License

protected String getDisplayStyle() {
    if (Validator.isNotNull(_ddmTemplateKey)) {
        return PortletDisplayTemplateManagerUtil.getDisplayStyle(_ddmTemplateKey);
    }/*from   w  ww .j  av a  2 s  .  co m*/

    return StringPool.BLANK;
}