Lines Matching refs:client
16 public $client; variable in auth_plugin_pureldap
31 $this->client = new ADClient($this->conf); // FIXME decide class on config
36 $this->cando['logout'] = !$this->client->getConf('sso');
37 if ($this->client->getConf('encryption') !== 'none') {
54 $this->client->getConf('sso') &&
62 $this->client = new ADClient($this->conf); // FIXME decide class on config
64 $this->client->authenticate($user, $pass);
75 $info = $this->client->getCachedUser($user, $requireGroups);
85 $this->client->getFilteredUsers(
97 return array_slice($this->client->getCachedGroups(), $start, $limit);
109 return $this->client->cleanUser($user);
131 $this->client->error('Only password changes are supported', __FILE__, __LINE__);
136 … return $this->client->setPassword($user, $changes['pass'], $INPUT->str('oldpass', null, true));