Home
last modified time | relevance | path

Searched +full:pass -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 70) sorted by path

123

/dokuwiki/conf/
H A Ddokuwiki.php179 $conf['proxy']['pass'] = '';
H A Dmysql.conf.php.example10 * uid login pass firstname lastname email
59 * The plugin accesses the password as 'pass' so an alias might be necessary.
63 * %{pass} encrypted or clear text password (depends on 'encryptPass')
66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
75 * 'pass' containing the encrypted or clear text password
85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail
140 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
145 (login, pass, email, firstname, lastname)
146 VALUES ('%{user}', '%{pass}', '%{email}',
216 * %{pass} passwor
[all...]
/dokuwiki/inc/Action/
H A DResendpwd.php107 $pass = $INPUT->str('pass');
110 if (!$pass) return false;
111 if ($pass != $INPUT->str('passchk')) {
117 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
122 $pass = auth_pwgen($user);
123 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
128 if (auth_sendPassword($user, $pass)) {
[all...]
H A DSitemap.php59 //use x-sendfile header to pass the delivery to compatible webservers
/dokuwiki/inc/Cache/
H A DCache.php192 * @return bool pass-thru $success value
/dokuwiki/inc/Extension/
H A DAuthPlugin.php190 * @param string $pass Cleartext Password
195 public function trustExternal($user, $pass, $sticky = false)
211 $_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
228 * @param string $pass the clear text password
231 public function checkPass($user, $pass)
271 * @param string $pass
277 public function createUser($user, $pass, $name, $mail, $grps = null)
197 trustExternal($user, $pass, $sticky = false) global() argument
233 checkPass($user, $pass) global() argument
279 createUser($user, $pass, $name, $mail, $grps = null) global() argument
H A DPluginInterface.php64 * retrieve a language dependent file and pass to xhtml renderer for display
H A DSyntaxPlugin.php67 * This function can only pass data to render() via its return value - render()
/dokuwiki/inc/HTTP/
H A DDokuHTTPClient.php31 $this->proxy_pass = conf_decodeString($conf['proxy']['pass']);
H A DHTTPClient.php48 public $pass;
186 if (isset($uri['pass'])) $this->pass = $uri['pass'];
240 $headers['Authorization'] = 'Basic ' . base64_encode($this->user . ':' . $this->pass);
47 public $pass; global() variable in dokuwiki\\HTTP\\HTTPClient
/dokuwiki/inc/
H A DMailer.class.php193 * If you pass the HTML part or HTML replacements yourself you have to make
722 // pass the whole mail class to plugin
724 // pass references for backward compatibility
H A DPassHash.php148 * @param string|null &$salt The salt, pass null if you want one generated
361 * Salt is 2 bytes long, but stored at position 16, so you need to pass at
362 * least 18 bytes. You can pass the crypted hash as salt.
H A Dauth.php217 $_SESSION[DOKU_COOKIE]['auth']['pass'] = 'nope';
262 * @param string $pass Cleartext Password
270 function auth_login($user, $pass, $sticky = false, $silent = false)
284 if (!empty($pass) && $auth->checkPass($user, $pass)) {
288 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
301 [$user, $sticky, $pass] = auth_getCookie();
302 if ($user && $pass) {
313 ($session['pass'] == sha1($pass))
207 auth_login($user, $pass, $sticky = false, $silent = false) global() argument
1246 auth_setCookie($user, $pass, $sticky) global() argument
[all...]
H A Dcommon.php62 * Please note: when you pass uninitialized variables, they will implicitly be created
1876 // pass info about the redirect back to the test suite
H A Dconfutils.php302 * @param array $params optional additional params to pass to the callback
H A Dfetch.functions.php92 //use x-sendfile header to pass the delivery to compatible webservers
H A Dform.php24 * tag. That way, the element output functions can pass the pseudo-element
/dokuwiki/inc/Remote/
H A DApi.php60 * Here you can pass a non-default RemoteAPICore instance. (for mocking)
117 * @param array $args arguments to pass to the given method
H A DApiCore.php131 * @param string $pass The password
134 public function login($user, $pass)
146 $ok = $auth->trustExternal($user, $pass, false);
151 'password' => $pass,
1001 * - check if the user has the required access level (pass AUTH_NONE to skip)
1033 login($user, $pass) global() argument
/dokuwiki/inc/Search/
H A DIndexer.php654 * The metadata values are compared as case-sensitive strings. Pass a
/dokuwiki/inc/Ui/
H A DLogin.php58 $input = $form->addPasswordInput('p', $lang['pass'])->addClass('block edit');
H A DUserRegister.php47 $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit');
H A DUserResendPwd.php61 $input = $form->addPasswordInput('pass', $lang['pass'])->attr('size', '50')->addClass('edit');
/dokuwiki/inc/Utf8/
H A DConversion.php41 * Pass HTML_ENTITIES and named entities, including & < etc.
H A DUnicode.php53 // US-ASCII, pass straight through.

123