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