Home
last modified time | relevance | path

Searched refs:getConf (Results 1 – 9 of 9) sorted by relevance

/dokuwiki/lib/plugins/authldap/
H A Dauth.php44 $this->cando['modPass'] = $this->getConf('modPass');
66 if ($this->getConf('binddn') && $this->getConf('bindpw')) {
68 …if (!@ldap_bind($this->con, $this->getConf('binddn'), conf_decodeString($this->getConf('bindpw')))…
74 $this->getConf('binddn') &&
75 $this->getConf('usertree') &&
76 $this->getConf('userfilter')
80 $this->getConf('binddn'),
81 ['user' => $user, 'server' => $this->getConf('server')]
83 } elseif (strpos($this->getConf('usertree'), '%{user}')) {
86 $this->getConf('usertree'),
[all …]
/dokuwiki/_test/tests/conf/
H A DCascadeNormalTest.php27 $this->assertEquals(0, $testing->getConf('schnibble'), 'default value');
37 $this->assertEquals('Local setting', $testing->getConf('second'), 'overriden in local.php');
H A DCascadeProtectedTest.php36 $this->assertEquals(1, $testing->getConf('schnibble'), 'protected local value, ');
37 … $this->assertEquals('Protected setting', $testing->getConf('second'), 'protected local value');
H A DCascadeExtraDefaultsTest.php42 $this->assertEquals(1, $testing->getConf('schnibble'), 'new default value');
46 …$this->assertEquals('Local setting', $testing->getConf('second'), 'local value still overrides def…
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php38 if (!$this->getConf('dsn')) {
46 $this->getConf('dsn'),
47 $this->getConf('user'),
48 conf_decodeString($this->getConf('pass')),
135 $result = $this->query($this->getConf('check-pass'), $userdata);
219 $ok = $this->query($this->getConf('insert-user'), $userdata);
273 $ok = $this->query($this->getConf('update-user-login'), $params);
283 $ok = $this->query($this->getConf('update-user-pass'), $params);
293 $ok = $this->query($this->getConf('update-user-info'), $params);
386 $result = $this->query($this->getConf('list-users'), $filter);
[all …]
/dokuwiki/inc/Extension/
H A DPluginInterface.php97 public function getConf($setting, $notset = false); function
H A DPluginTrait.php185 public function getConf($setting, $notset = false) function
/dokuwiki/lib/plugins/authpdo/_test/
H A Dmysql.test.php118 $info = 'DSN: ' . $auth->getConf('dsn');
168 $info = 'DSN: ' . $auth->getConf('dsn') . ' User:' . $user['user'];
/dokuwiki/lib/plugins/authad/
H A Dauth.php105 if ($this->getConf('sso_charset')) {
108 … iconv($this->getConf('sso_charset'), 'UTF-8', $INPUT->server->str('REMOTE_USER'))