Home
last modified time | relevance | path

Searched +full:select +full:- +full:user +full:- +full:groups -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 12 of 12) sorted by relevance

/dokuwiki/lib/plugins/authpdo/
H A Dauth.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
22 /** @var null|array The list of all groups */
33 $this->debugMsg('PDO extension for PHP not found.', -1, __LINE__);
34 $this->success = false;
38 if (!$this->getConf('dsn')) {
39 $this->debugMsg('No DSN specified', -1, __LINE__);
40 $this->success = false;
45 $this->pd
162 checkPass($user, $pass) global() argument
202 getUserData($user, $requireGroups = true) global() argument
236 createUser($user, $clear, $name, $mail, $grps = null) global() argument
295 modifyUser($user, $changes) global() argument
509 selectUser($user) global() argument
551 deleteUser($user) global() argument
[all...]
/dokuwiki/lib/plugins/authpdo/conf/
H A Dmetadata.php11 $meta['user'] = array('string', '_caution' => 'danger');
13 $meta['select-user'] = array('', '_caution' => 'danger');
14 $meta['check-pass'] = array('', '_caution' => 'danger');
15 $meta['select-user-groups']
[all...]
H A Ddefault.php11 $conf['user'] = '';
15 * statement to select a single user identified by its login name
17 * input: :user
18 * return: user, name, mail, (clear|hash), [uid], [*]
20 $conf['select-user'] = '';
25 * input: :user, :clear, :hash, [uid], [*]
28 $conf['check-pas
[all...]
/dokuwiki/conf/
H A Dmysql.conf.php.example12 * TABLE groups
27 $conf['plugin']['authmysql']['user'] = '';
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug");
51 /* Basic SQL statements for user authentication (required) */
56 * of the user. If the result table is empty or contains more than one
62 * %{user} user name
66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
69 JOIN groups A
[all...]
/dokuwiki/inc/
H A Dmail.php14 * the pattern uses non-capturing groups as captured groups aren't allowed in the parser
15 * select pattern delimiters with care!
23 if (!defined('RFC2822_ATEXT')) define('RFC2822_ATEXT', "0-9a-zA-Z!#$%&'*+/=?^_`{|}~-");
26 '[' . RFC2822_ATEXT . ']+(?:\.[' . RFC2822_ATEXT . ']+)*@(?i:[0-9a-
[all...]
/dokuwiki/lib/plugins/acl/
H A Dadmin.php41 return $this->getLang('admin_acl');
53 * handle user request
71 if ($INPUT->str('ns') == '*') {
72 $this->ns = '*';
74 $this->ns = cleanID($INPUT->str('ns'));
77 if ($INPUT->str('current_ns')) {
78 $this->current_item = ['id' => cleanID($INPUT->str('current_ns')), 'type' => 'd'];
79 } elseif ($INPUT->st
[all...]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Doracle8.php4 * ----------
[all...]
H A Dabap.php4 * --------
7 * - Sandra Rossi (sandra.rossi@gmail.com)
8 * - Jaco
[all...]
H A Dmysql.php4 * ---------
8 * Date Started: 2008-1
[all...]
/dokuwiki/
H A Dinstall.php3 /*><div style="width:60%; margin: auto; background-color: #fcc;
5 <h1 style="font-size: 120%">No PHP Support</h1>
33 $LC = preg_replace('/[^a-z\-]+/', '', $_REQUEST['l']);
44 header('Content-Type: text/html; charset=utf-8');
49 <meta charset="utf-8"/>
55 font: 84% Verdana, Helvetica, Arial, sans-serif;
67 font-size: 110%;
77 margin-to
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland
30 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland
31 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
43 * based directory. If you bind as a domain user, you can't fetch as
74 * The default port for LDAP non-SSL connections
143 * If you wish to use TLS you should ensure that $useSSL is set to false and vice-versa
159 * eg. User Fred is a member of Group A, which is a member of Group B, which is a member of Group C
184 if ($this->ldapConnection) {
185 return $this->ldapConnectio
239 public function user() { global() function in adLDAP
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php4 * Pure-PHP implementation of SSHv2.
14 * if (!$ssh->login('username', 'password')) {
18 * echo $ssh->exec('pwd');
19 * echo $ssh->exec('ls -la');
30 * if (!$ssh->login('username', $key)) {
34 * echo $ssh->read('username@username:~$');
35 * $ssh->write("ls -la\n");
36 * echo $ssh->rea
[all...]