本文整理汇总了Java中com.liferay.portal.util.PortalUtil.getPortletId方法的典型用法代码示例。如果您正苦于以下问题:Java PortalUtil.getPortletId方法的具体用法?Java PortalUtil.getPortletId怎么用?Java PortalUtil.getPortletId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.liferay.portal.util.PortalUtil
的用法示例。
在下文中一共展示了PortalUtil.getPortletId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPortletDisplayId
import com.liferay.portal.util.PortalUtil; //导入方法依赖的package包/类
public static String getPortletDisplayId(PortletRequest request,ThemeDisplay themeDisplay)
{
// El "portlet display id" es el identificador del portlet
// Ejemplo: mediatecabyranking_WAR_npaportletportlet
String id = themeDisplay.getPortletDisplay().getId();
if (id == null || id.equals(""))
{
// Bug de Liferay, estamos en una fase action y el PortletDisplay del ThemeDisplay no se inicializa en una fase action
// http://www.liferay.com/community/forums/-/message_boards/message/5446551
id = PortalUtil.getPortletId(request);
}
return id;
}
示例2: upmodule
import com.liferay.portal.util.PortalUtil; //导入方法依赖的package包/类
public void upmodule(ActionRequest actionRequest, ActionResponse actionResponse)
throws Exception {
ThemeDisplay themeDisplay = (ThemeDisplay) actionRequest.getAttribute(WebKeys.THEME_DISPLAY);
long userIdAction = themeDisplay.getUserId();
String portletId = PortalUtil.getPortletId(actionRequest);
long moduleId = ParamUtil.getLong(actionRequest, "resourcePrimKey",0);
if(moduleId>0)
{
com.liferay.lms.service.ModuleLocalServiceUtil.goUpModule(moduleId,userIdAction);
}
}
示例3: downmodule
import com.liferay.portal.util.PortalUtil; //导入方法依赖的package包/类
public void downmodule(ActionRequest actionRequest, ActionResponse actionResponse)
throws Exception {
ThemeDisplay themeDisplay = (ThemeDisplay) actionRequest.getAttribute(WebKeys.THEME_DISPLAY);
String portletId = PortalUtil.getPortletId(actionRequest);
long userIdAction = themeDisplay.getUserId();
long moduleId = ParamUtil.getLong(actionRequest, "resourcePrimKey",0);
if(moduleId>0)
{
com.liferay.lms.service.ModuleLocalServiceUtil.goDownModule(moduleId,userIdAction);
}
}