Home
last modified time | relevance | path

Searched refs:getConf (Results 1 – 5 of 5) 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('serve
[all...]
/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')),
132 $result = $this->query($this->getConf('check-pass'), $userdata);
216 $ok = $this->query($this->getConf('insert-user'), $userdata);
270 $ok = $this->query($this->getConf('update-user-login'), $params);
280 $ok = $this->query($this->getConf('update-user-pass'), $params);
290 $ok = $this->query($this->getConf('update-user-info'), $params);
383 $result = $this->query($this->getConf('lis
[all...]
/dokuwiki/inc/Extension/
H A DPluginInterface.php97 public function getConf($setting, $notset = false); function
101 * this function is automatically called through getConf()
H A DPluginTrait.php15 protected $conf = []; // array to hold plugin settings, best accessed via ->getConf()
183 * @see PluginInterface::getConf()
185 public function getConf($setting, $notset = false)
220 * this function is automatically called through getConf()
161 public function getConf($setting, $notset = false) global() function
/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'))