1

如何根据用户的角色隐藏一些静态页面?

我定义了名为“blabla”的用户角色。现在我想隐藏这些用户的所有页面,除了“静态页面”后端中的页面“blabla”。我怎样才能做到这一点?

对不起我的英语不好))

4

1 回答 1

1

是的,当然你可以做到,但我们需要在这里编写一些代码。

我们可以利用cms.object.listInTheme事件

在引导方法中的插件中,您可以添加此事件侦听器并过滤静态页面。

\Event::listen('cms.object.listInTheme', function ($cmsObject, $objectList) {

    // lets check if we are really running in static pages
    // you can also add more checks here based on controllers etc ..
    if ($cmsObject instanceof \RainLab\Pages\Classes\Page) {

        $user = \BackendAuth::getUser();
        // role code and role name are different things
        // we should use role code as it act as constant
        $hasRoleFromWhichIneedTohidePages = $user->role->code === 'blabla' ? true : false;

        // if user has that role then we start filtering
        if($hasRoleFromWhichIneedTohidePages) {
            foreach ($objectList as $index => $page) {

                // we can use different matching you can use one of them
                // to identify your page which you want to hide. 
                // forgot method will hide that page

                // match against filename 
                if ($page->fileName == 'hidethispage.htm') {
                    $objectList->forget($index);
                }

                // OR match against title
                if ($page->title == 'hidethispage') {
                    $objectList->forget($index);
                }

                // OR match against url
                if ($page->url == '/hidethispage') {
                    $objectList->forget($index);
                }
             }
         }
    }
});

目前此代码将检查page-url / title / file-name并静态限制用户在列表中显示页面,但您可以将自己的逻辑放在这里并使事情动态化。

如果您没有得到它或想要动态解决方案,请发表评论,我会更详细地解释。

于 2017-12-06T12:34:09.350 回答