++++code php| getConf('allowed_groups'); if ($allowedGroups) { $userGroups = explode(',', $allowedGroups); foreach ($userGroups as $group) { if (in_array(trim($group), $USERINFO['groups'])) { return true; } } return false; } return true; } } ++++