Lines Matching defs:isGUID

168     * @param bool $isGUID Is the username a GUID or a samAccountName
171 public function delete($username, $isGUID = false)
173 $userinfo = $this->info($username, array("*"), $isGUID);
187 * @param bool $isGUID Is the username passed a GUID or a samAccountName
190 public function groups($username, $recursive = NULL, $isGUID = false)
197 $info = @$this->info($username, array("memberof", "primarygroupid"), $isGUID);
215 * @param bool $isGUID Is the username passed a GUID or a samAccountName
218 public function info($username, $fields = NULL, $isGUID = false)
223 if ($isGUID === true) {
270 * @param bool $isGUID Is the username passed a GUID or a samAccountName
273 public function infoCollection($username, $fields = NULL, $isGUID = false)
278 $info = $this->info($username, $fields, $isGUID);
293 * @param bool $isGUID Is the username passed a GUID or a samAccountName
296 public function inGroup($username, $group, $recursive = NULL, $isGUID = false)
304 $groups = $this->groups($username, $recursive, $isGUID);
318 * @param book $isGUID Is the username passed a GUID or a samAccountName
322 public function passwordExpiry($username, $isGUID = false)
328 $userInfo = $this->info($username, array("pwdlastset", "useraccountcontrol"), $isGUID);
391 * @param bool $isGUID Is the username passed a GUID or a samAccountName
394 public function modify($username, $attributes, $isGUID = false)
402 $userDn = $this->dn($username, $isGUID);
439 * @param bool $isGUID Is the username passed a GUID or a samAccountName
442 public function disable($username, $isGUID = false)
446 $result = $this->modify($username, $attributes, $isGUID);
456 * @param bool $isGUID Is the username passed a GUID or a samAccountName
459 public function enable($username, $isGUID = false)
463 $result = $this->modify($username, $attributes, $isGUID);
474 * @param bool $isGUID Is the username passed a GUID or a samAccountName
477 public function password($username, $password, $isGUID = false)
486 $userDn = $this->dn($username, $isGUID);
531 * @param bool $isGUID Is the username passed a GUID or a samAccountName
534 public function dn($username, $isGUID=false)
536 $user = $this->info($username, array("cn"), $isGUID);