Searched refs:distinguishedName (Results 1 – 2 of 2) sorted by relevance
| /dokuwiki/lib/plugins/authad/adLDAP/classes/ |
| H A D | adLDAPContacts.php | 106 public function groups($distinguishedName, $recursive = NULL) argument 108 if ($distinguishedName === NULL) { return false; } 113 $info = @$this->info($distinguishedName, array("memberof", "primarygroupid")); 133 public function info($distinguishedName, $fields = NULL) argument 135 if ($distinguishedName === NULL) { return false; } 138 $filter = "distinguishedName=" . $distinguishedName; 162 * @param string $distinguishedName The full DN of a contact 166 public function infoCollection($distinguishedName, $fields = NULL) argument 168 if ($distinguishedName === NULL) { return false; } 171 $info = $this->info($distinguishedName, $fields); [all …]
|
| H A D | adLDAPExchange.php | 298 * @param string $distinguishedName The contact to mail enable 303 public function contactMailEnable($distinguishedName, $emailAddress, $mailNickname = NULL) argument 305 … if ($distinguishedName === NULL) { return "Missing compulsory field [distinguishedName]"; } 310 $user = $this->adldap->contact()->info($distinguishedName, array("cn","displayname")); 324 $result = ldap_modify($this->adldap->getLdapConnection(), $distinguishedName, $mod);
|