Lines Matching defs:user
39 // for resetting passwords a privileged user is needed
48 public function checkPass($user, $pass)
56 $INPUT->server->str('REMOTE_USER') == $user
61 // try to bind with the user credentials, client will stay authenticated as user
63 return $this->client->authenticate($user, $pass);
67 public function getUserData($user, $requireGroups = true)
69 $info = $this->client->getCachedUser($user, $requireGroups);
101 public function cleanUser($user)
103 return $this->client->cleanUser($user);
113 public function useSessionCache($user)
122 public function modifyUser($user, $changes)
130 return $this->client->setPassword($user, $changes['pass'], $INPUT->str('oldpass', null, true));