Home
last modified time | relevance | path

Searched +full:select +full:- +full:groups -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 15 of 15) 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
[all...]
/dokuwiki/lib/plugins/authpdo/conf/
H A Dmetadata.php13 $meta['select-user'] = array('', '_caution' => 'danger');
14 $meta['check-pass'] = array('', '_caution' => 'danger');
15 $meta['select-user-groups'] = array('', '_caution' => 'danger');
16 $meta['select-groups']
[all...]
H A Ddefault.php15 * statement to select a single user identified by its login name
20 $conf['select-user'] = '';
28 $conf['check-pass'] = '';
31 * statement to select a single user identified by its login name
36 $conf['select-user-groups'] = '';
39 * Select al
[all...]
/dokuwiki/conf/
H A Dmysql.conf.php.example12 * TABLE groups
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug");
66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
69 JOIN groups AS g ON g.gid=ug.gid
85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail
89 /* This statement is used to get all groups a user is member of. The
90 * result should be a table containing all groups the given user is
97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group`
98 FROM groups
[all...]
/dokuwiki/lib/scripts/
H A Dtextselection.js20 return this.end - this.start;
31 * @link http://groups.drupal.org/node/1210
33 * @link http://linebyline.blogspot.com/2006/11/textarea-cursor-position-in-internet.html
34 * @returns object - a selection object
53 * @link http://groups.drupal.org/node/1210
92 if(opts.endofs) selection.end -= opts.endofs;
117 if(text.charAt(text.length -
[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 Dactionscript3.php4 * ----------
[all...]
H A Dmysql.php4 * ---------
8 * Date Started: 2008-1
[all...]
H A Dbash.php4 * --------
13 * --
[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');
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->str('current_id')) {
80 $this->current_ite
[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
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
184 if ($this->ldapConnection) {
185 return $this->ldapConnection;
196 return $this->ldapBind;
205 return $this->baseD
[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...]