Home
last modified time | relevance | path

Searched refs:login (Results 1 – 25 of 25) sorted by relevance

/dokuwiki/inc/Remote/Response/
H A DUser.php11 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);
[all …]
/dokuwiki/inc/Subscriptions/
H A DRegistrationSubscriptionSender.php10 * @param string $login login name of the new user
18 public function sendRegister($login, $fullname, $email) argument
26 'NEWUSER' => $login,
34 $login,
/dokuwiki/inc/lang/id/
H A Dlogin.txt3 Anda belum login! Masukkan data autentifikasi dibawah ini untuk masuk log (login). Cookies harus di…
H A Dpwconfirm.txt3 Seseorang telah meminta password baru untuk @TITLE@ Anda login ke @DOKUWIKIURL@
H A Dregister.txt3 … email yang valid**, karena password akan dikirim melalui email ini. Nama login harus sesuai denga…
/dokuwiki/conf/
H A Dusers.auth.php.dist9 # login:passwordhash:Real Name:email:groups,comma,separated
H A Dmysql.conf.php.example10 * uid login pass firstname lastname email
70 WHERE login='%{user}'
87 WHERE login='%{user}'";
101 AND u.login='%{user}'";
107 /* This statement should return a table containing all user login names
113 * The login name will be accessed as 'user' to an alias might be necessary.
116 * %{user} in FilterLogin user's login name
121 $conf['plugin']['authmysql']['getUsers'] = "SELECT DISTINCT login AS user
125 $conf['plugin']['authmysql']['FilterLogin'] = "login LIKE '%{user}'";
129 $conf['plugin']['authmysql']['SortOrder'] = "ORDER BY login";
[all …]
/dokuwiki/inc/lang/nl/
H A Dlogin.txt3 Je bent op dit moment niet ingelogd! Voer je login-gegevens hieronder in om in te loggen. Je browse…
H A Dpwconfirm.txt3 Iemand heeft een nieuw wachtwoord aangevraagd voor je @TITLE@ login op @DOKUWIKIURL@
/dokuwiki/inc/lang/fi/
H A Dpwconfirm.txt3 Joku pyysi uutta salasanaa login nimellesi @TITLE@ sivustolla @DOKUWIKIURL@
/dokuwiki/inc/lang/de/
H A Dpwconfirm.txt3 Jemand hat ein neues Passwort für Ihren @TITLE@ login auf @DOKUWIKIURL@ angefordert.
/dokuwiki/inc/lang/en/
H A Dpwconfirm.txt3 Someone requested a new password for your @TITLE@ login at @DOKUWIKIURL@
H A Dregister.txt3 …ked to enter a password here, a new one will be sent to that address. The login name should be a v…
/dokuwiki/inc/lang/da/
H A Dsubscr_list.txt10 For at stoppe notifikationer om sideændringer, login på wikien på
H A Dpwconfirm.txt3 Nogen har bedt om et nyt password til dit @TITLE@ login på @DOKUWIKIURL@
/dokuwiki/inc/lang/lb/
H A Dpwconfirm.txt3 Iergendeen huet e neit Passwuert fir däin @TITLE@ login op @DOKUWIKIURL@ gefrot
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php155 [$login, $mail, $name, $grps, $pass] = $args;
161 $pass = auth_pwgen($login);
174 if ($auth->triggerUserMod('create', [$login, $pass, $name, $mail, $grps])) {
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_forms.css6 * - login
H A Ddesign.less77 .mode_login .action.login a,
/dokuwiki/inc/
H A Dauth.php1005 $login = trim($auth->cleanUser($INPUT->post->str('login')));
1011 if (empty($login) || empty($fullname) || empty($email)) {
1017 $pass = auth_pwgen($login); // automatically generate password
1033 if (!$auth->triggerUserMod('create', [$login, $pass, $fullname, $email])) {
1040 $subscription->sendRegister($login, $fullname, $email);
1049 if (auth_sendPassword($login, $pass)) {
/dokuwiki/data/pages/wiki/
H A Dwelcome.txt20 …[[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php217 if (!$this->sftp->login($user, $pass)) {
223 if (!$this->sftp->login($user, $pass)) {
/dokuwiki/inc/Remote/
H A DLegacyApiCore.php548 return parent::login($user, $pass);
H A DApiCore.php135 public function login($user, $pass) function in dokuwiki\\Remote\\ApiCore
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2265 public function login($username, ...$args) function in phpseclib3\\Net\\SSH2
3511 $result = $this->login(...$auth);