Home
last modified time | relevance | path

Searched +full:join +full:- +full:group -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 28) sorted by relevance

12

/dokuwiki/lib/plugins/authpdo/conf/
H A Ddefault.php20 $conf['select-user'] = '';
28 $conf['check-pass'] = '';
34 * return: group
36 $conf['select-user-groups'] = '';
39 * Select all the existing group names
41 * return: group, [gid], [*]
43 $conf['select-groups'] = '';
50 $conf['insert-user'] = '';
57 $conf['delete-use
[all...]
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'] = array('', '_caution' => 'danger');
17 $meta['insert-user'] = array('', '_caution' => 'danger');
18 $meta['delete-user'] = array('', '_caution' => 'danger');
19 $meta['list-users'] = array('', '_caution' => 'danger');
20 $meta['count-users'] = array('', '_caution' => 'danger');
21 $meta['update-use
[all...]
/dokuwiki/conf/
H A Dmysql.conf.php.example64 * %{dgroup} default group name
68 JOIN users AS u ON u.uid=ug.uid
69 JOIN groups AS g ON g.gid=ug.gid
91 * member of. The plugin accesses the group name as 'group' so an alias
97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group`
119 * %{group} in FilterGroup group name
123 LEFT JOIN usergroup AS ug ON u.uid=ug.uid
124 LEFT JOIN group
[all...]
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
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->pdo = new PDO(
46 $this->getCon
472 addGroup($group) global() argument
[all...]
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php24 protected $group = ''; variable in splitbrain\\PHPArchive\\FileInfo
36 $this->mtime = time();
37 $this->setPath($path);
77 $file->setPath($path);
78 $file->setIsdir(is_dir($path));
79 $file->setMode(fileperms($path));
80 $file->setOwner(fileowner($path));
81 $file->setGroup(filegroup($path));
82 $file->setSize(filesize($path));
83 $file->setUi
202 setGroup($group) global() argument
[all...]
/dokuwiki/lib/plugins/authplain/
H A Dauth.php13 * @author Jan Schumann <js@schumann-it.com>
40 $this->success = false;
43 $this->cando['addUser'] = true;
44 $this->cando['delUser'] = true;
45 $this->cando['modLogin'] = true;
46 $this->cando['modPass'] = true;
47 $this->cando['modName'] = true;
48 $this->cando['modMail'] = true;
49 $this->cando['modGroups'] = true;
51 $this->cand
367 cleanGroup($group) global() argument
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php41 * @link http://www.nosq.com/blog/2005/08/ldap-activedirectory-and-dokuwiki/
43 * @author Jan Schumann <js@schumann-it.com>
86 $this->loadConfig();
89 if (isset($this->conf['additional'])) {
90 $this->conf['additional'] = str_replace(' ', '', $this->conf['additional']);
91 $this->conf['additional'] = explode(',', $this->con
298 cleanGroup($group) global() argument
[all...]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dsass.php4 * -------
13 * ---
[all...]
H A Dpowershell.php4 * ----------
[all...]
H A Doxygene.php4 * ----------
[all...]
H A Dsql.php4 * -------
7 * - Jürgen Thomas (Juergen.Thomas@vs-polis.de)
15 * -
[all...]
H A Dxpp.php4 * -------
11 * For details, see <http://msdn.microsoft.com/en-us/library/aa867122.aspx>
14 * --
[all...]
H A Dgenero.php4 * ----------
[all...]
H A Dvbnet.php4 * ---------
13 * -
[all...]
H A Dmysql.php4 * ---------
8 * Date Started: 2008-1
[all...]
H A Dcsharp.php4 * ----------
[all...]
H A Dpostgresql.php4 * ----------
[all...]
H A Dabap.php4 * --------
7 * - Sandra Rossi (sandra.rossi@gmail.com)
8 * - Jaco
[all...]
H A Dracket.php4 * ----------
[all...]
H A Dvisualfoxpro.php4 * ----------
[all...]
H A Dgroovy.php4 * ----------
[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/lib/plugins/authldap/
H A Dauth.php13 * @author Jan Schumann <js@schumann-it.com>
38 $this->debug("LDAP err: PHP LDAP extension not found.", -1, __LINE__, __FILE__);
39 $this->success = false;
44 $this->cando['modPass'] = $this->getConf('modPass');
63 if (!$this->openLDAP()) return false;
66 if ($this->getConf('binddn') && $this->getConf('bindpw')) {
68 if (!@ldap_bind($this->co
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUtils.php12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland
31 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland
32 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
53 $this->adldap = $adldap;
67 for ($i=0; $i<$groups["count"]; $i++){ // For each group
72 // so we ditch the first three characters and the group
75 $groupArray[] = substr($bits[0], 3, (strlen($bits[0])-3));
105 '/([\x00-\x1F\*\(\)\\\\])/',
107 return "\\".join("", unpac
[all...]
/dokuwiki/inc/
H A Dfulltext.php74 $lookup = $Indexer->lookup($q['words']);
78 foreach ($Indexer->getPages() as $id) {
87 case 'W-:':
95 case 'P-:': // phrase
109 if ($evt->advise_before() && $evt->result !== true) {
112 $evt->result = true;
115 $evt->advise_after();
116 if ($evt->result === true) {
123 case 'N-
[all...]

12