Searched refs:getConf (Results 1 – 9 of 9) sorted by relevance
| /dokuwiki/lib/plugins/authldap/ |
| H A D | auth.php | 44 $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 D | CascadeNormalTest.php | 27 $this->assertEquals(0, $testing->getConf('schnibble'), 'default value'); 37 $this->assertEquals('Local setting', $testing->getConf('second'), 'overriden in local.php');
|
| H A D | CascadeProtectedTest.php | 36 $this->assertEquals(1, $testing->getConf('schnibble'), 'protected local value, '); 37 … $this->assertEquals('Protected setting', $testing->getConf('second'), 'protected local value');
|
| H A D | CascadeExtraDefaultsTest.php | 42 $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 D | auth.php | 38 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 D | PluginInterface.php | 97 public function getConf($setting, $notset = false); function
|
| H A D | PluginTrait.php | 185 public function getConf($setting, $notset = false) function
|
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | mysql.test.php | 118 $info = 'DSN: ' . $auth->getConf('dsn'); 168 $info = 'DSN: ' . $auth->getConf('dsn') . ' User:' . $user['user'];
|
| /dokuwiki/lib/plugins/authad/ |
| H A D | auth.php | 105 if ($this->getConf('sso_charset')) { 108 … iconv($this->getConf('sso_charset'), 'UTF-8', $INPUT->server->str('REMOTE_USER'))
|