Example usage for com.liferay.portal.kernel.theme PortletDisplay getURLBack

List of usage examples for com.liferay.portal.kernel.theme PortletDisplay getURLBack

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.theme PortletDisplay getURLBack.

Prototype

public String getURLBack() 

Source Link

Usage

From source file:com.liferay.product.navigation.control.menu.web.internal.PortletBackLinkProductNavigationControlMenuEntry.java

License:Open Source License

protected String getPortletBackURL(HttpServletRequest request) {
    ThemeDisplay themeDisplay = (ThemeDisplay) request.getAttribute(WebKeys.THEME_DISPLAY);

    PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();

    return portletDisplay.getURLBack();
}