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

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

public fromLdap ( $value )
    public function fromLdap($value)
    {
        $ldapType = ['Unknown'];
        $value = MBString::array_change_value_case($value);
        foreach ($this->getOptions() as $type => $classes) {
            if (MBString::array_change_value_case($classes) == $value) {
                $ldapType = [$type];
                break;
            }
        }
        return $ldapType;
    }