eZ\Publish\Core\FieldType\RichText\Type::createValueFromInput PHP Метод

createValueFromInput() защищенный Метод

Inspects given $inputValue and potentially converts it into a dedicated value object.
protected createValueFromInput ( Value | DOMDocument | string $inputValue ) : Value
$inputValue Value | DOMDocument | string
Результат Value The potentially converted and structurally plausible value.
    protected function createValueFromInput($inputValue)
    {
        if (is_string($inputValue)) {
            if (empty($inputValue)) {
                $inputValue = Value::EMPTY_VALUE;
            }
            if ($this->inputNormalizer !== null && $this->inputNormalizer->accept($inputValue)) {
                $inputValue = $this->inputNormalizer->normalize($inputValue);
            }
            $inputValue = $this->loadXMLString($inputValue);
        }
        if ($inputValue instanceof DOMDocument) {
            if ($this->inputValidatorDispatcher !== null) {
                $errors = $this->inputValidatorDispatcher->dispatch($inputValue);
                if (!empty($errors)) {
                    throw new InvalidArgumentException('$inputValue', 'Validation of XML content failed: ' . implode("\n", $errors));
                }
            }
            $inputValue = new Value($this->inputConverterDispatcher->dispatch($inputValue));
        }
        return $inputValue;
    }