1

我是 Liferay 的新手,我创建了两个UserGroups- Grp1(用户 a1、b1、c1)和 Grp2(用户 a2、b2、c2)。

Groupwise 创建了一些公共和私人页面,这些页面将 Grp1 任务与 Grp2 区分开来。

  1. 我希望用户 a2、b2、c2 有自己的私有页面,只有他们可以查看。

  2. 当我通过用户say a2登录时,默认情况下会查看liferay的公共页面,并且在转到用户(a2)的公共和私人页面中可用。

    不能在登录时查看用户的公共和私人页面,而不是 Liferay 的默认页面?

  3. 以及公共GROUP LEVELUSER LEVEL私人页面有何不同?

我在组级别(Grp2)创建了公共和私有页面,所有页面对 a2、b2、c2 都是可见的。在添加页面 (a2) 时,它表现为私有页面,只有 a2 可以查看它。

4

1 回答 1

2

我希望用户 a2、b2、c2 有自己的私有页面,只有他们可以查看。

  • 然后使用用户级别的私人页面。您可以在GO TO带有 url 的菜单中看到http://localhost/user/a2/home
  • 这些页面将在用户添加到 liferay 时自动创建。您可以通过修改以下属性来控制这些页面的创建portal.properties

    layout.user.private.layouts.enabled=true
    layout.user.private.layouts.auto.create=true
    

    您还可以查看默认用户私有布局部分以portal.properties了解更多信息。

  • 这些页面仅对用户可见,并且只有用户可以完全控制它。
  • 在 Liferay 用户指南的用户个人网站部分了解更多信息。
  • -

不能在登录时查看用户的公共和私人页面,而不是 Liferay 的默认页面?

GROUP LEVEL 和 USER LEVEL 公共和私人页面有何不同?

  • 我认为您是在询问用户组级别(而不仅仅是组)和用户级别之间的区别。
  • 请参阅Liferay 用户指南中的用户组站点部分,该部分的一些相关摘录:

    Liferay allows users to each have a personal site consisting of public and
    private pages. Permissions can be granted to allow users to customize their
    personal sites at will. Originally, the default configuration of those pages
    could only be determined by the portal administrator through the
    portal-ext.properties file and, optionally, by providing the configuration in
    a LAR file. You can still configure it like this but it isn’t very flexible or
    easy to use.
    
    By using User Group Sites, portal administrators can add pages to the personal
    sites of all the users who belong to the site in an easy and centralized way.
    All the user group site’s public pages are shown as part of the user’s public
    personal site. All the user group site’s private pages are shown as part of the
    user’s private site. If a user belongs to several user groups, all of its pages
    are made part of his public and private site. In an educational institution’s
    portal, for example, teachers, staff and students could get different default
    pages and applications on their personal sites.
    

希望这会有所帮助。

于 2012-08-22T07:22:13.977 回答