0

現在、クライアントのログイン領域があります。このログイン領域では、「管理者」ユーザー向けの特定の情報を表示するスニペットを作成するつもりでした。

使えそうな予感がした

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

ただし、すべてのユーザー タイプは Web です。

私も見回していて、Web グループの 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 に答える