コード例 #1
0
ファイル: Discovery.php プロジェクト: kobmaki/icingaweb2
 /**
  * Whether the suggested ldap server is an ActiveDirectory
  *
  * @return boolean
  */
 public function isAd()
 {
     return $this->connection->getCapabilities()->isActiveDirectory();
 }
コード例 #2
0
ファイル: Discovery.php プロジェクト: hsanjuan/icingaweb2
 /**
  * Whether the suggested ldap server is an ActiveDirectory
  *
  * @return boolean
  */
 public function isAd()
 {
     $this->execDiscovery();
     return $this->connection->getCapabilities()->hasAdOid();
 }
コード例 #3
0
ファイル: Discovery.php プロジェクト: kain64/icingaweb2
 /**
  * Whether the suggested ldap server is an ActiveDirectory
  *
  * @return boolean
  */
 public function isAd()
 {
     return $this->connection->getCapabilities()->hasAdOid();
 }