Lines Matching refs:group
93 * @param string $group The group to add the user to
98 public function addUser($group, $user, $isGUID = false) argument
110 $groupInfo = $this->info($group, array("cn"));
129 * @param string $group The group to add the contact to
133 public function addContact($group, $contactDn) argument
139 $groupInfo = $this->info($group, array("cn"));
192 * @param string $group The group to delete (please be careful here!)
196 public function delete($group) { argument
198 if ($group === null){ return "Missing compulsory field [group]"; }
200 $groupInfo = $this->info($group, array("*"));
245 * @param string $group The group to remove a user from
250 public function removeUser($group, $user, $isGUID = false) argument
254 $groupInfo = $this->info($group, array("cn"));
279 * @param string $group The group to remove a user from
283 public function removeContact($group, $contactDn) argument
287 $groupInfo = $this->info($group, array("cn"));
306 * @param string $group The group to query
310 public function inGroup($group, $recursive = NULL) argument
316 $info = $this->info($group, array("member","cn"));
355 * @param string $group The group to query
359 public function members($group, $recursive = NULL) argument
364 $info = $this->info($group, array("member","cn"));
459 * @param string $group The group to get the list from
462 public function recursiveGroups($group) argument
464 if ($group === NULL) { return false; }
470 array_push($stack, $group); // Initial Group to Start with