Beispiel #1
0
 /**
  * Whether the suggested ldap server is an ActiveDirectory
  *
  * @return boolean
  */
 public function isAd()
 {
     return $this->connection->getCapabilities()->isActiveDirectory();
 }
Beispiel #2
0
 /**
  * Whether the suggested ldap server is an ActiveDirectory
  *
  * @return boolean
  */
 public function isAd()
 {
     $this->execDiscovery();
     return $this->connection->getCapabilities()->hasAdOid();
 }
Beispiel #3
0
 /**
  * Whether the suggested ldap server is an ActiveDirectory
  *
  * @return boolean
  */
 public function isAd()
 {
     return $this->connection->getCapabilities()->hasAdOid();
 }