Lines Matching defs:username
408 * Set the username of an account with higher priviledges
419 * Get the username of the account with higher priviledges
625 // Connect to the AD/LDAP server as the username/password
687 * @param string $username A user's AD username
692 public function authenticate($username, $password, $preventRebind = false) {
694 if ($username === NULL || $password === NULL) { return false; }
695 if (empty($username) || empty($password)) { return false; }
698 if ($this->useSSO && $_SERVER['REMOTE_USER'] && $_SERVER['REMOTE_USER'] == $username && $this->adminUsername === NULL && $_SERVER['KRB5CCNAME']) {
711 $this->ldapBind = @ldap_bind($this->ldapConnection, $username . $this->accountSuffix, $password);