LdapTools\Query\Operator\BaseOperator::getTranslatedAttribute PHP 메소드

getTranslatedAttribute() 공개 메소드

Get the translated attribute (the attribute after the schema conversion).
public getTranslatedAttribute ( string | null $alias = null ) : string | null
$alias string | null
리턴 string | null
    public function getTranslatedAttribute($alias = null)
    {
        if ($alias && isset($this->translatedAliasAttribute[$alias])) {
            return $this->translatedAliasAttribute[$alias];
        } else {
            return $this->translatedAttribute;
        }
    }