eZ\Publish\Core\FieldType\FieldType::createValueFromInput PHP 메소드

createValueFromInput() 추상적인 보호된 메소드

If given $inputValue could not be converted or is already an instance of dedicate value object, the method should simply return it. This is an operation method for {@see \acceptValue()}. Example implementation: protected function createValueFromInput( $inputValue ) { if ( is_array( $inputValue ) ) { $inputValue = \eZ\Publish\Core\FieldType\CookieJar\Value( $inputValue ); } return $inputValue; }
abstract protected createValueFromInput ( mixed $inputValue ) : mixed
$inputValue mixed
리턴 mixed The potentially converted input value.
    protected abstract function createValueFromInput($inputValue);