Lines Matching defs:group
118 $extraGroups = $this->adldap->group()->recursiveGroups($groupName);
146 // AD does not return the primary group in the ldap query, we may need to fudge it
149 $entries[0]["memberof"][] = $this->adldap->group()->getPrimaryGroup($entries[0]["primarygroupid"][0], $entries[0]["objectsid"][0]);
181 * Determine if a contact is a member of a group
184 * @param string $group The group name to query
188 public function inGroup($distinguisedName, $group, $recursive = NULL)
191 if ($group === NULL) { return false; }
198 // Return true if the specified group is in the group list
199 if (in_array($group, $groups)){