當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UserGroup::listGroupsForUser方法代碼示例

本文整理匯總了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;
    }
}
開發者ID:atm-arnaud,項目名稱:dolibarr_module_ideabox,代碼行數:10,代碼來源:ideabox.lib.php

示例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&amp;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);
開發者ID:netors,項目名稱:dolibarr,代碼行數:31,代碼來源:fiche.php

示例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";
開發者ID:NoisyBoy86,項目名稱:Dolibarr_test,代碼行數:28,代碼來源:card.php


注:本文中的UserGroup::listGroupsForUser方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。