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