Exemplo n.º 1
0
  public Boolean isShowContextLink(long groupId, String portletId) throws PortalException {

    if (_showContextLink == null) {
      _showContextLink = isShowContextLink();

      if (_showContextLink) {
        if (PortalUtil.getPlidFromPortletId(groupId, portletId) == 0) {
          _showContextLink = false;
        }
      }
    }

    return _showContextLink;
  }