Lines Matching defs:group
202 $extraGroups = $this->adldap->group()->recursiveGroups($groupName);
246 // AD does not return the primary group in the ldap query, we may need to fudge it
249 $entries[0]["memberof"][] = $this->adldap->group()->getPrimaryGroup($entries[0]["primarygroupid"][0], $entries[0]["objectsid"][0]);
288 * Determine if a user is in a specific group
291 * @param string $group The name of the group to check against
296 public function inGroup($username, $group, $recursive = NULL, $isGUID = false)
299 if ($group === NULL) { return false; }
306 // Return true if the specified group is in the group list
307 if (in_array($group, $groups)) {