1

UserGroupsGrp1 (ユーザー a1、b1、c1) と Grp2 (ユーザー a2、b2、c2) の2 つを作成しました。

Grp1 タスクと Grp2 タスクを区別するために、グループごとにいくつかの公開ページと非公開ページが作成されます。

  1. ユーザーa2、b2、c2に、自分だけが表示できる独自のプライベートページを用意してもらいたいです。

  2. そして、ユーザーがa2と言ってログインすると、デフォルトでliferayの公開ページが表示され、GO TOユーザー(a2)の公開ページと非公開ページが利用可能になります。

    ログイン自体で、liferay のデフォルト ページではなく、ユーザーの公開ページと非公開ページを表示することはできませんか?

  3. また、公開ページと非公開ページの違いはGROUP LEVELUSER LEVELですか?

パブリックとプライベートの両方のグループ レベル (Grp2) でページを作成しました。すべてのページは a2、b2、c2 に表示されます。ページ (a2) を追加すると、a2 のみが表示できるプライベート ページとして動作します。

4

1 に答える 1

2

ユーザーa2、b2、c2に、自分だけが表示できる独自のプライベートページを用意してもらいたいです。

  • 次に、ユーザー レベルのプライベート ページを使用します。GO TOURL付きのメニューで見ることができますhttp://localhost/user/a2/home
  • これらのページは、ユーザーが liferay に追加されると自動的に作成されます。で次のプロパティを変更することにより、これらのページの作成を制御できますportal.properties

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

    セクションのDefault User Private Layoutsをチェックして、portal.propertiesさらにアイデアを得ることができます。

  • これらのページはユーザーにのみ表示され、ユーザーのみが完全に制御できます。
  • 詳細については、Liferay ユーザー ガイドのユーザー パーソナル サイトのセクションを参照してください。
  • -

ログイン自体で、liferay のデフォルト ページではなく、ユーザーの公開ページと非公開ページを表示することはできませんか?

また、GROUP LEVEL と USER LEVEL の公開ページと非公開ページはどう違うのでしょうか?

  • UserGroup Level (単なるグループではなく) と User Level の違いについて質問していると思います。
  • Liferay User-guide のセクションUser Group Sitesを参照してください。セクションからの関連する抜粋:

    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 に答える