当前位置: 首页>>代码示例>>Java>>正文


Java PortalUtil.getPortletId方法代码示例

本文整理汇总了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;
}
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:14,代码来源:LiferayViewUtil.java

示例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);
	}

}
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:15,代码来源:modulePortlet.java

示例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);
	}

}
 
开发者ID:TelefonicaED,项目名称:liferaylms-portlet,代码行数:15,代码来源:modulePortlet.java


注:本文中的com.liferay.portal.util.PortalUtil.getPortletId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。