コード例 #1
0
ファイル: ADLdap.php プロジェクト: df-arif/df-adldap
 /** @inheritdoc */
 public function listComputer(array $attributes = [])
 {
     parent::listComputer();
     // TODO: Change the autogenerated stub
 }
コード例 #2
0
ファイル: LdapUser.php プロジェクト: df-arif/df-adldap
 /**
  * {@inheritdoc}
  */
 public function getDomain()
 {
     return OpenLdap::getDomainName($this->getDn());
 }
コード例 #3
0
ファイル: ADLdap.php プロジェクト: rajeshpillai/df-adldap
 /**
  * @param string      $host
  * @param string      $baseDn
  * @param string|null $accountSuffix
  */
 public function __construct($host, $baseDn, $accountSuffix = null)
 {
     parent::__construct($host, $baseDn);
     $this->setAccountSuffix($accountSuffix);
 }