hi josh.
you can wrap sections of your page that you want to restrict to certain users by implementing resource action permissions on the page. for example, if you create an action called ADMINISTRATE. then you can allow only users that have permissions to ADMINISTRATE to see a certain section of the page.
1
2<c:if test="<%= PortletPermission.contains(permissionChecker, plid, PortletKeys.YOUR_PORTLET, ActionKeys.ADMINISTRATE) %>">
3 <%-- some content --%>
4</c:if>
hope this helps.
Por favor, faça login para denunciar.