在 MODx 中获取 user_group

发布于 2024-09-08 00:33:11 字数 404 浏览 6 评论 0原文

目前我有一个客户端登录区域。在此登录区域中,我将创建一个片段,用于显示“管理员”用户的某些信息。

我有一种感觉,我可以使用

<?php
if ($modx->getLoginUserType()) {
   echo 'hi';
} else {}
?>

但是,所有用户类型都是网络。

我还环顾四周,发现了一个可以打印网络组的网络用户的脚本: http://modxcms.com/forums/index.php/topic,43139.0。 html

有什么建议吗?

Currently I have a Client login area. In this login area I was going to create a snippet that shows certain information for 'Admin' users.

I had a feeling I could use

<?php
if ($modx->getLoginUserType()) {
   echo 'hi';
} else {}
?>

However, all User Types are web.

I was also looking around and found a script that prints out web-users of a web-group:
http://modxcms.com/forums/index.php/topic,43139.0.html

Any Advice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮凉 2024-09-15 00:33:11
$test = $modx->isMemberOfWebGroup( array(
    'Editors'
));
if ($test === true) {
    // Is a member of the group
} else {
    // Is not a member of the group
}

请参阅: http://wiki.modxcms.com/index.php/API:isMemberOfWebGroup< /a>

$test = $modx->isMemberOfWebGroup( array(
    'Editors'
));
if ($test === true) {
    // Is a member of the group
} else {
    // Is not a member of the group
}

see: http://wiki.modxcms.com/index.php/API:isMemberOfWebGroup

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文