0

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

我有一种可以使用的感觉

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

但是,所有用户类型都是 web。

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

有什么建议吗?

4

1 回答 1

0
$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

于 2010-07-20T12:29:16.757 回答