Lines Matching defs:adldap
9 * email: scott@wiggumworld.com, adldap@richardhyland.com
10 * http://adldap.sourceforge.net/
35 * @link http://adldap.sourceforge.net/
50 protected $adldap;
52 public function __construct(adLDAP $adldap) {
53 $this->adldap = $adldap;
66 if (!$this->adldap->getLdapBind()) { return false; }
72 $sr = ldap_search($this->adldap->getLdapConnection(), $this->adldap->getBaseDn(), $filter, $fields);
73 $entries = ldap_get_entries($this->adldap->getLdapConnection(), $sr);
88 if (!$this->adldap->getLdapBind()) { return false; }
93 $collection = new adLDAPComputerCollection($info, $this->adldap);
111 if (!$this->adldap->getLdapBind()) { return false; }
112 if ($recursive === NULL) { $recursive = $this->adldap->getRecursiveGroups(); } // use the default option if they haven't set it
135 if ($recursive === NULL) { $recursive = $this->adldap->getRecursiveGroups(); } //use the default option if they haven't set it
136 if (!$this->adldap->getLdapBind()){ return false; }
140 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); //presuming the entry returned is our guy (unique usernames)
144 $extraGroups = $this->adldap->group()->recursiveGroups($groupName);