Lines Matching defs:info
74 $childGroup = $this->info($child, array("cn"));
110 $groupInfo = $this->info($group, array("cn"));
139 $groupInfo = $this->info($group, array("cn"));
200 $groupInfo = $this->info($group, array("*"));
219 $parentGroup = $this->info($parent, array("cn"));
226 $childGroup = $this->info($child, array("cn"));
254 $groupInfo = $this->info($group, array("cn"));
287 $groupInfo = $this->info($group, array("cn"));
316 $info = $this->info($group, array("member","cn"));
317 $groups = $info[0]["member"];
364 $info = $this->info($group, array("member","cn"));
365 $users = $info[0]["member"];
412 * @param string $groupName The group name to retrieve info about
416 public function info($groupName, $fields = NULL)
439 * @param string $groupName The group name to retrieve info about
448 $info = $this->info($groupName, $fields);
449 if ($info !== false) {
450 $collection = new adLDAPGroupCollection($info, $this->adldap);
475 $info = $this->info($parent, array("memberof"));
477 if (isset($info[0]["memberof"]) && is_array($info[0]["memberof"])) {
478 $groups = $info[0]["memberof"];