Lines Matching refs:login
11 public $login; variable in dokuwiki\\Remote\\Response\\User
24 * @param string $login defaults to the current user
29 public function __construct($login = '', $name = '', $mail = '', $groups = []) argument
35 $this->login = $login;
40 if ($this->login === '') {
41 $this->login = $INPUT->server->str('REMOTE_USER');
44 if ($this->login === '') {
49 if ($this->login === $INPUT->server->str('REMOTE_USER')) {
55 $userData = $auth->getUserData($this->login);
62 $this->isadmin = auth_isAdmin($this->login, $this->groups);
63 $this->ismanager = auth_isManager($this->login, $this->groups);
69 return $this->login;