本文整理汇总了PHP中UserGroup::listGroupsForUser方法的典型用法代码示例。如果您正苦于以下问题:PHP UserGroup::listGroupsForUser方法的具体用法?PHP UserGroup::listGroupsForUser怎么用?PHP UserGroup::listGroupsForUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserGroup
的用法示例。
在下文中一共展示了UserGroup::listGroupsForUser方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkIdeabox
function checkIdeabox($id = 0)
{
global $db, $langs;
if (isset($id) && $id > 0) {
$usergroup = new UserGroup($db);
return $usergroup->listGroupsForUser($id);
} else {
return false;
}
}
示例2: array
}
// Delete
if ($user->id != $id && $candisableuser && (empty($conf->multicompany->enabled) || $fuser->entity == $conf->entity)) {
print '<a class="butActionDelete" href="fiche.php?action=delete&id=' . $fuser->id . '">' . $langs->trans("DeleteUser") . '</a>';
}
print "</div>\n";
print "<br>\n";
/*
* Liste des groupes dans lequel est l'utilisateur
*/
if ($canreadgroup) {
print_fiche_titre($langs->trans("ListOfGroupsForUser"), '', '');
// On selectionne les groupes auquel fait parti le user
$exclude = array();
$usergroup = new UserGroup($db);
$groupslist = $usergroup->listGroupsForUser($fuser->id);
if (!empty($groupslist)) {
foreach ($groupslist as $groupforuser) {
$exclude[] = $groupforuser->id;
}
}
if ($caneditgroup) {
$form = new Form($db);
print '<form action="fiche.php?id=' . $id . '" method="post">' . "\n";
print '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
print '<input type="hidden" name="action" value="addgroup">';
print '<input type="hidden" name="entity" value="' . $conf->entity . '">';
print '<table class="noborder" width="100%">' . "\n";
print '<tr class="liste_titre"><td class="liste_titre" width="25%">' . $langs->trans("GroupsToAdd") . '</td>' . "\n";
print '<td>';
print $form->select_dolgroups('', 'group', 1, $exclude);
示例3: array
/*
* List of groups of user
*/
if ($canreadgroup)
{
print load_fiche_titre($langs->trans("ListOfGroupsForUser"),'','');
// On selectionne les groupes auquel fait parti le user
$exclude = array();
$usergroup=new UserGroup($db);
$groupslist = $usergroup->listGroupsForUser($object->id);
if (! empty($groupslist))
{
if (! (! empty($conf->multicompany->enabled) && ! empty($conf->multicompany->transverse_mode)))
{
foreach($groupslist as $groupforuser)
{
$exclude[]=$groupforuser->id;
}
}
}
if ($caneditgroup)
{
print '<form action="'.$_SERVER['PHP_SELF'].'?id='.$id.'" method="POST">'."\n";