Home
last modified time | relevance | path

Searched refs:getConf (Results 51 – 75 of 1091) sorted by path

12345678910>>...44

/plugin/authchained/
H A Dauth.php51 if($this->getConf('authtypes')){
52 foreach(explode(":",$this->getConf('authtypes')) as $tmp_plugin){
70 if($this->getConf('usermanager_authtype')){
71 $this->usermanager_auth =& plugin_load('auth',$this->getConf('usermanager_authtype'));
73 … msg("Problem constructing usermanager authtype: ".$this->getConf('usermanager_authtype'),-1);
/plugin/authclientcert/
H A Dauth.php48 $header_name = $this->getConf('http_header_name');
85 $group = $this->getConf('group');
171 if(!$this->getConf('debug')) return;
/plugin/authdjango/
H A Dauth.php37 if ($this->getConf('protocol') == 'sqlite') {
38 $this->dbh = new PDO('sqlite:' . $this->getConf('server'));
41 …DO($this->getConf('protocol') . ':host=' . $this->getConf('server') . ';dbname=' . $this->getConf(…
/plugin/authdomainlimitation/action/
H A Dsignup.php43 }, explode(';', $this->getConf('_domainWhiteList')));
53 msg($this->getConf('_domainlistErrorMEssage'), -1);
/plugin/authdrupal7/
H A Dauth.php42 if(!$this->getConf('server') || !$this->getConf('user') || !$this->getConf('database')) {
105 $drupalroot = $this->getConf('drupalRoot');
237 …$sql = str_replace('%{drupal_prefix}', $this->getConf('drupalPrefix'), $this->getConf('getUserCoun…
310 …$con = @mysql_connect($this->getConf('server'), $this->getConf('user'), $this->getConf('password')…
312 if((mysql_select_db($this->getConf('database'), $con))) {
319 if($this->getConf('charset')) {
329 … "MySQL err: Connection to {$this->getConf('user')}@{$this->getConf('server')} not possible.",
363 if($this->getConf('debug') >= 2) {
411 if(!$this->getConf('debug')) return;
427 if($this->getConf('debug') >= 2) {
[all …]
/plugin/authdrupal8/
H A Dauth.php40 if(!$this->getConf('database') || !$this->getConf('username') || !$this->getConf('host')) {
81 $sql = str_replace('%{drupalPrefix}', $this->getConf('prefix'), $sql);
182 $sql = str_replace('%{drupalPrefix}', $this->getConf('prefix'), $sql);
208 $sql = str_replace('%{drupalPrefix}', $this->getConf('prefix'), $sql);
232 $sql = str_replace('%{drupalPrefix}', $this->getConf('prefix'), $this->getUserCount);
304 $con = @mysqli_connect($this->getConf('host'), $this->getConf('username'), $this->getConf('passwor
[all...]
/plugin/authenvvars/
H A Dauth.php35 $this->userinfo['userid'] = $_SERVER[$this->getConf('useridvar')];
39 $this->userinfo['name'] = $_SERVER[$this->getConf('usernamevar')];
40 $this->userinfo['mail'] = $_SERVER[$this->getConf('emailvar')];
41 …$this->userinfo['grps'] = $this->createGrouparray($this->getConf('groupsvar'),$this->getConf('gr…
/plugin/authfacebook/
H A Dauth.php84 …if (($appId = $this->getConf('applicationID')) && ($appSecret = $this->getConf('applicationSecret'…
113 if ($me['id'] == $this->getConf('appAdmin'))
125 $USERINFO['grps'] = array( $this->getConf('defaultgroup'));
126 if (($fbgroupid = $this->getConf('fbgid2group')) != ''){
134 if (in_array($me['id'],json_decode($this->getConf('superuser'))))
186 explode(',',$this->getConf('scope'))
192 explode(',',$this->getConf('scope'))
201 explode(',',$this->getConf('scope'))
215 …if (($appId = $this->getConf('applicationID')) && ($appSecret = $this->getConf('applicationSecret'…
238 if ($mapgroups = json_decode($this->getConf('fbgid2group'),true)){
[all …]
/plugin/authg2fa/
H A Daction.php19 $enable = $this->getConf("g2fa_enable");
H A Dauth.php31 $tslack = $this->getConf("g2fa_timeout_slack");
32 $enable = $this->getConf("g2fa_enable");
33 $force = $this->getConf("g2fa_force");
34 $hint = $this->getConf("g2fa_hint");
/plugin/authgoogle/
H A Dauth.php81 $client->setClientId($this->getConf('client_id'));
82 $client->setClientSecret($this->getConf('client_secret'));
153 … if ($this->getConf('default_groups')) $grps = explode(' ', $this->getConf('default_groups'));
194 if ($this->getConf('allowed_domains')) {
195 $domains = preg_split("/[ ]+/is", $this->getConf('allowed_domains'));
/plugin/authgoogle2fa/
H A Daction.php15 $enable = $this->getConf("use2fa_verify");
H A Dauth.php19 $secret = $this->getConf("google_secret");
21 $tslack = $this->getConf("timeout_slack");
22 $enable = $this->getConf("use2fa_verify");
/plugin/authgooglesheets/
H A Dhelper.php36 $this->spreadsheetId = $this->getConf('sheetId');
123 $range = $this->getConf('sheetName') . '!A2';
158 $rangeStart = $this->getConf('sheetName') . '!';
214 "sheetId" => $this->getConf('sheetGid'),
306 $range = $this->getConf('sheetName') . '!A1:Z';
326 $range = $this->getConf('sheetName') . '!1:1';
/plugin/authhiorgserver/
H A Dauth.php42 $this->ssourl = $this->getConf('ssourl');
43 $ov = $this->getConf('ov');
126 $ov = $this->getConf('ov');
155 $ov = trim($this->getConf("ov"));
160 $groups = array("group1"=>$this->getConf("group1_name"),
161 "group2"=>$this->getConf("group2_name"),
165 $users = $this->getConf($name."_users");
188 $ov = trim($this->getConf("ov"));
194 switch ($this->getConf('syncname')) {
/plugin/authhttp/
H A Dauth.php71 $this->$cfgvar = $this->getConf("$cfgvar");
/plugin/authimap/
H A Dauth.php25 if(!$this->getConf('server')) {
30 if(!$this->getConf('domain')) {
63 $domain = $this->getConf('domain');
64 $server = $this->getConf('server');
67 if($this->getConf('usedomain')) {
98 $domain = $this->getConf('domain');
/plugin/authimap2/
H A Dauth.php32 if(!$this->getConf('server')) {
36 if(!$this->getConf('domain')) {
75 $domain = $this->getConf('domain');
76 $server = $this->getConf('server');
81 if($this->getConf('usedomain')) {
/plugin/authjoomla/
H A Dauth.php30 !empty($this->getConf('cookiename'))
46 if (empty($this->getConf('cookiename'))) return;
47 if (empty($_COOKIE[$this->getConf('cookiename')])) return;
50 $session = $_COOKIE[$this->getConf('cookiename')];
51 $sql = $this->getConf('select-session');
75 $prefix = $this->getConf('tableprefix');
/plugin/authjoomla3/
H A Dauth.php27 $this->joomlaPath = $this->getConf('joomlaPath');
/plugin/authldaplocal/
H A Dauth.php91 if($this->getConf('binddn') && $this->getConf('bindpw')) {
93 …if(!@ldap_bind($this->con, $this->getConf('binddn'), conf_decodeString($this->getConf('bindpw'))))…
99 $this->getConf('usertree') &&
100 $this->getConf('userfilter')
104 $this->getConf('binddn'),
111 $this->getConf('usertree'),
183 if($this->getConf('binddn') && $this->getConf('bindpw') && $this->bound < 2) {
185 …if(!@ldap_bind($this->con, $this->getConf('binddn'), conf_decodeString($this->getConf('bindpw'))))…
260 if($this->getConf('grouptree') || $this->getConf('groupfilter')) {
715 if($this->getConf('debug')) {
[all …]
/plugin/authlinotp/
H A Dauth.php42 $privacyidea_url = $this->getConf("privacyidea_url");
43 $privacyidea_realm = $this->getConf("privacyidea_realm");
44 $privacyidea_verify = $this->getConf("privacyidea_verify");
45 $timeout = $this->getConf("privacyidea_timeout");
/plugin/authloginapi/
H A Daction.php29 $this->endpoint = $this->getConf('endpoint');
30 $this->token = $this->getConf('token');
63 $button['value'] = $this->getConf('button');
H A Dauth.php21 $this->token = $this->getConf('token');
/plugin/authnc/
H A Dauth.php419 $host = explode(':', $this->getConf('server'));
420 $fp = fSockOpen('ssl:' . $host[1], $this->getConf('port'), $errno, $errstr, 5);
422 …$this->con = $this->getConf('server') . ':' . $this->getConf('port') . '/' . $this->getConf('ocs-p…

12345678910>>...44