Lines Matching defs:recursive
104 * @param bool $recursive Whether to check recursively
107 public function inGroup($computerName, $group, $recursive = NULL)
112 if ($recursive === NULL) { $recursive = $this->adldap->getRecursiveGroups(); } // use the default option if they haven't set it
115 $groups = $this->groups($computerName, array("memberof"), $recursive);
129 * @param bool $recursive Whether to check recursively
132 public function groups($computerName, $recursive = NULL)
135 if ($recursive === NULL) { $recursive = $this->adldap->getRecursiveGroups(); } //use the default option if they haven't set it
142 if ($recursive === true) {