| /dokuwiki/inc/Remote/Response/ |
| H A D | User.php | 10 /** @var string The login name of the user */ 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); [all …]
|
| /dokuwiki/inc/Subscriptions/ |
| H A D | RegistrationSubscriptionSender.php | 10 * @param string $login login name of the new user 18 public function sendRegister($login, $fullname, $email) argument 26 'NEWUSER' => $login, 34 $login,
|
| /dokuwiki/inc/Ui/ |
| H A D | Login.php | 10 * DokuWiki User Login Interface (Login Form) 14 class Login extends Ui class 19 * Login Ui constructor 29 * Display the Login Form Panel 43 echo p_locale_xhtml('login'); 46 // create the login form 51 $form->setHiddenField('do', 'login'); 81 echo $form->toHTML('Login');
|
| H A D | UserRegister.php | 34 // create the login form 41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit') 42 ->val($INPUT->post->str('login'));
|
| /dokuwiki/inc/Action/ |
| H A D | Login.php | 9 * Class Login 11 * The login form. Actual logins are handled in inc/auth.php 15 class Login extends AbstractAclAction class 37 (new Ui\Login())->show();
|
| H A D | Denied.php | 5 use dokuwiki\Ui\Login; alias 33 if (empty($INPUT->server->str('REMOTE_USER')) && actionOK('login')) { 34 (new Login())->show();
|
| H A D | Logout.php | 48 // do the logout stuff and redirect to login 50 send_redirect(wl($ID, ['do' => 'login'], true, '&')); 53 throw new ActionException('login');
|
| H A D | Resendpwd.php | 43 throw new ActionAbort('login'); 142 if (!$INPUT->post->str('login')) { 146 $user = trim($auth->cleanUser($INPUT->post->str('login'))); 165 'LOGIN' => $user,
|
| H A D | Register.php | 42 throw new ActionAbort('login');
|
| /dokuwiki/inc/Menu/Item/ |
| H A D | Login.php | 6 * Class Login 8 * Show a login or logout item, based on the current state 10 class Login extends AbstractItem class 18 $this->svg = DOKU_INC . 'lib/images/menu/login.svg';
|
| /dokuwiki/conf/ |
| H A D | mysql.conf.php.example | 10 * 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 …]
|
| H A D | users.auth.php.dist | 9 # login:passwordhash:Real Name:email:groups,comma,separated
|
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | sqlite.test.php | 51 …uthpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS clear, mail FROM user WH… 55 …$conf['plugin']['authpdo']['insert-user'] = 'INSERT INTO user (login, pass, name, mail) VALUES (:u… 58 $conf['plugin']['authpdo']['list-users'] = 'SELECT DISTINCT login as user 63 AND U.login LIKE :user 66 ORDER BY login 69 $conf['plugin']['authpdo']['count-users'] = 'SELECT COUNT(DISTINCT login) as count 74 AND U.login LIKE :user 79 …$conf['plugin']['authpdo']['update-user-login'] = 'UPDATE user SET login = :newlogin WHERE id = :u… 125 …authpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS hash, mail FROM user WH…
|
| /dokuwiki/lib/plugins/authpdo/conf/ |
| H A D | default.php | 15 * statement to select a single user identified by its login name 31 * statement to select a single user identified by its login name 87 * Update user name aka login 91 $conf['update-user-login'] = '';
|
| H A D | metadata.php | 22 $meta['update-user-login'] = array('', '_caution' => 'danger');
|
| /dokuwiki/inc/Menu/ |
| H A D | UserMenu.php | 14 protected $types = ['Profile', 'Admin', 'Register', 'Login'];
|
| /dokuwiki/lib/plugins/authad/ |
| H A D | action.php | 29 * Adds the selected domain as user postfix when attempting a login 54 * Shows a domain selection in the login form when more than one domain is configured
|
| /dokuwiki/lib/plugins/authplain/_test/conf/ |
| H A D | auth.users.php | 9 # login:passwordhash:Real Name:email:groups,comma,separated
|
| /dokuwiki/inc/ |
| H A D | auth.php | 6 * Including this file will automatically try to login 79 // do the login either by cookie or provided credentials XXX 182 * Try a token login 184 * @return bool true if token login succeeded 267 * This tries to login the user based on the sent auth credentials 270 * a new login is assumed and user/password are checked. If they 284 * On a successful login $_SERVER[REMOTE_USER] and $USERINFO 309 //usual login 320 http_status(403, 'Login failed'); 955 * @param string $user Login name of the user [all …]
|
| /dokuwiki/lib/plugins/authpdo/_test/mysql/ |
| H A D | mybb.php | 76 ', // we do not support changing the full name as that is the same as the login 77 'update-user-login' => '
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | remote.php | 25 * @param string $user The user's login name 87 * @param string[] $user The login name of the user to delete
|
| H A D | cli.php | 32 $options->registerArgument('login', 'Username', true, 'add'); 155 [$login, $mail, $name, $grps, $pass] = $args; 161 $pass = auth_pwgen($login); 174 if ($auth->triggerUserMod('create', [$login, $pass, $name, $mail, $grps])) {
|
| /dokuwiki/_test/tests/inc/ |
| H A D | template_tpl_get_action.php | 176 'type' => 'login', 180 'do' => 'login', 186 $this->assertEquals($expect, tpl_get_action('login')); 202 $this->assertEquals($expect, tpl_get_action('login'));
|
| /dokuwiki/lib/plugins/config/core/Setting/ |
| H A D | SettingAuthtype.php | 55 msg('Authentication system changed. Please re-login.');
|
| /dokuwiki/data/pages/wiki/ |
| H A D | welcome.txt | 20 …[[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first…
|