Lines Matching defs:groupName
412 * @param string $groupName The group name to retrieve info about
416 public function info($groupName, $fields = NULL)
418 if ($groupName === NULL) { return false; }
421 if (stristr($groupName, '+')) {
422 $groupName = stripslashes($groupName);
425 $filter = "(&(objectCategory=group)(name=" . $this->adldap->utilities()->ldapSlashes($groupName) . "))";
439 * @param string $groupName The group name to retrieve info about
443 public function infoCollection($groupName, $fields = NULL)
445 if ($groupName === NULL) { return false; }
448 $info = $this->info($groupName, $fields);
482 foreach ($groupNames as $id => $groupName) {
483 if (!in_array($groupName, $processed)) {
484 array_push($stack, $groupName);