LdapTools\AttributeConverter\ConvertUserAccountControl::fromLdap PHP Метод

fromLdap() публичный Метод

public fromLdap ( $value )
    public function fromLdap($value)
    {
        $this->validateCurrentAttribute($this->getOptions()['uacMap']);
        $value = (bool) ((int) $value & (int) $this->getArrayValue($this->getOptions()['uacMap'], $this->getAttribute()));
        return $this->shouldInvertValue() ? !$value : $value;
    }