Home
last modified time | relevance | path

Searched refs:utilities (Results 1 – 6 of 6) sorted by relevance

/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPGroups.php325 $filter = "(&(objectCategory=group)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($groups[$i]) . "))";
332 $filter = "(&(objectCategory=group)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($groups[$i]) . "))";
373 $filter = "(&(objectCategory=person)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($users[$i]) . "))";
380 $filter = "(&(objectCategory=group)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($users[$i]) . "))";
425 $filter = "(&(objectCategory=group)(name=" . $this->adldap->utilities()->ldapSlashes($groupName) . "))";
480 $groupNames = $this->adldap->utilities()->niceNames($groups);
590 $filter = '(objectsid=' . $this->adldap->utilities()->getTextSID($gsid).')';
H A DadLDAPContacts.php91 $result = @ldap_add($this->adldap->getLdapConnection(), "CN=" . $this->adldap->utilities()->escapeCharacters($add["cn"][0]) . ", " . $container . "," . $this->adldap->getBaseDn(), $add);
114 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); //presuming the entry returned is our contact
H A DadLDAPComputers.php140 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); //presuming the entry returned is our guy (unique usernames)
H A DadLDAPUsers.php198 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); // Presuming the entry returned is our guy (unique usernames)
224 $username = $this->adldap->utilities()->strGuidToHex($username);
595 $strGUID = $this->adldap->utilities()->binaryToText($guid[0]);
H A DadLDAPExchange.php83 $mdbUseDefaults = $this->adldap->utilities()->boolToString($useDefaults);
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php277 public function utilities() { function in adLDAP