Adldap\Schemas\SchemaInterface::domainComponent PHP Method

domainComponent() public method

Domain Component located inside an RDN.
public domainComponent ( ) : string
return string
    public function domainComponent();

Usage Example

コード例 #1
0
ファイル: DistinguishedName.php プロジェクト: adldap2/adldap2
 /**
  * Assembles the domain components in the distinguished Name.
  *
  * @return string
  */
 public function assembleDcs()
 {
     return $this->assembleRdns($this->schema->domainComponent(), $this->domainComponents);
 }
SchemaInterface