Lines Matching defs:recursive
103 * @param bool $recursive Recursively check groups
106 public function groups($distinguishedName, $recursive = NULL)
109 if ($recursive === NULL) { $recursive = $this->adldap->getRecursiveGroups(); } //use the default option if they haven't set it
116 if ($recursive === true){
185 * @param bool $recursive Recursively check groups
188 public function inGroup($distinguisedName, $group, $recursive = NULL)
193 if ($recursive === NULL) { $recursive = $this->adldap->getRecursiveGroups(); } //use the default option if they haven't set it
196 $groups = $this->groups($distinguisedName, array("memberof"), $recursive);