Home
last modified time | relevance | path

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

/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPFolders.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
48 protected $adldap; variable in adLDAPFolders
50 public function __construct(adLDAP $adldap) { argument
51 $this->adldap = $adldap;
62 $result = ldap_delete($this->adldap->getLdapConnection(), $dn);
71 * See http://adldap.sourceforge.net/wiki/doku.php?id=api_folder_functions
83 if ($recursive === NULL) { $recursive = $this->adldap
[all...]
H A DadLDAPContacts.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
49 protected $adldap; variable in adLDAPContacts
51 public function __construct(adLDAP $adldap) { argument
52 $this->adldap = $adldap;
74 $add = $this->adldap->adldap_schema($attributes);
91 $result = @ldap_add($this->adldap->getLdapConnection(), "CN=" . $this->adldap
[all...]
H A DadLDAPComputers.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
50 protected $adldap; variable in adLDAPComputers
52 public function __construct(adLDAP $adldap) { argument
53 $this->adldap = $adldap;
66 if (!$this->adldap->getLdapBind()) { return false; }
72 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap
[all...]
H A DadLDAPGroups.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
51 protected $adldap; variable in adLDAPGroups
53 public function __construct(adLDAP $adldap) { argument
54 $this->adldap = $adldap;
83 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $parentDn, $add);
104 $userDn = $this->adldap->user()->dn($user, $isGUID);
119 $result = @ldap_mod_add($this->adldap
[all...]
H A DadLDAPUsers.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
51 protected $adldap; variable in adLDAPUsers
53 public function __construct(adLDAP $adldap) { argument
54 $this->adldap = $adldap;
66 return $this->adldap->authenticate($username, $password, $preventRebind);
87 if (array_key_exists("password",$attributes) && (!$this->adldap->getUseSSL() && !$this->adldap
[all...]
H A DadLDAPExchange.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
48 protected $adldap; variable in adLDAPExchange
50 public function __construct(adLDAP $adldap) { argument
51 $this->adldap = $adldap;
75 $baseDn = $this->adldap->getBaseDn();
83 $mdbUseDefaults = $this->adldap->utilities()->boolToString($useDefaults);
91 $result = $this->adldap
[all...]
H A DadLDAPUtils.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
50 protected $adldap; variable in adLDAPUtils
52 public function __construct(adLDAP $adldap) { argument
53 $this->adldap = $adldap;
103 // see https://github.com/adldap/adLDAP/issues/22
/dokuwiki/lib/plugins/authad/adLDAP/collections/
H A DadLDAPCollection.php9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
45 protected $adldap; variable in adLDAPCollection
61 public function __construct($info, adLDAP $adldap) argument
64 $this->adldap = $adldap;
/dokuwiki/lib/plugins/authad/
H A Dauth.php55 protected $adldap = [];
167 $adldap = $this->initAdLdap($this->getUserDomain($user));
168 if (!$adldap) return false;
171 return $adldap->authenticate($this->getUserName($user), $pass);
209 $adldap = $this->initAdLdap($this->getUserDomain($user));
210 if (!$adldap) return false;
221 $result = $adldap->user()->info($this->getUserName($user), $fields);
245 $info['grps'] = $adldap->user()->groups($this->getUserName($user), (bool) $this->opts['recursive_groups']);
269 $expiry = $adldap->user()->passwordExpiry($user);
400 $adldap
52 protected $adldap = array(); global() variable in auth_plugin_authad
[all...]