PHP Class Neos\Flow\Property\TypeConverter\FloatConverter

This is basically done by simply casting it, unless the input is a string and you provide some configuration options which will make this converter use Flow's locale parsing capabilities in order to respect deviating decimal separators. Using NULL or an empty string as input will result in a NULL return value. **Advanced usage in action controller context** *Using default locale*:: protected function initializeCreateAction() { $this->arguments['newBid']->getPropertyMappingConfiguration()->forProperty('price')->setTypeConverterOption( \Neos\Flow\Property\TypeConverter\FloatConverter::class, 'locale', TRUE ); } Just providing TRUE as option value will use the current default locale. In case that default locale is "DE" for Germany for example, where a comma is used as decimal separator, the mentioned code will return (float)15.5 when the input was (string)"15,50". *Using arbitrary locale*:: protected function initializeCreateAction() { $this->arguments['newBid']->getPropertyMappingConfiguration()->forProperty('price')->setTypeConverterOption( \Neos\Flow\Property\TypeConverter\FloatConverter::class, 'locale', 'fr' ); } **Parsing mode** There are two parsing modes available, strict and lenient mode. Strict mode will check all constraints of the provided format, and if any of them are not fulfilled, the conversion will not take place. In Lenient mode the parser will try to extract the intended number from the string, even if it's not well formed. Default for strict mode is TRUE. *Example setting lenient mode (abridged)*:: ->setTypeConverterOption( \Neos\Flow\Property\TypeConverter\FloatConverter::class, 'strictMode', FALSE ); **Format type** Format type can be decimal, percent or currency; represented as class constant FORMAT_TYPE_DECIMAL, FORMAT_TYPE_PERCENT or FORMAT_TYPE_CURRENCY of class Neos\Flow\I18n\Cldr\Reader\NumbersReader. Default, if none given, is FORMAT_TYPE_DECIMAL. *Example setting format type currency (abridged)*:: ->setTypeConverterOption( \Neos\Flow\Property\TypeConverter\FloatConverter::class, 'formatType', \Neos\Flow\I18n\Cldr\Reader\NumbersReader::FORMAT_TYPE_CURRENCY ); **Format length** Format type can be default, full, long, medium or short; represented as class constant FORMAT_LENGTH_DEFAULT, FORMAT_LENGTH_FULL, FORMAT_LENGTH_LONG etc., of class Neos\Flow\I18n\Cldr\Reader\NumbersReader. The format length has a technical background in the CLDR repository, and specifies whether a different number pattern should be used. In most cases leaving this DEFAULT would be the correct choice. *Example setting format length (abridged)*:: ->setTypeConverterOption( \Neos\Flow\Property\TypeConverter\FloatConverter::class, 'formatLength', \Neos\Flow\I18n\Cldr\Reader\NumbersReader::FORMAT_LENGTH_FULL );
Inheritance: extends AbstractTypeConverter
Afficher le fichier Open project: neos/flow-development-collection Class Usage Examples

Protected Properties

Свойство Type Description
$localizationService Neos\Flow\I18n\Service
$numberParser Neos\Flow\I18n\Parser\NumberParser
$priority integer
$sourceTypes array
$targetType string

Méthodes publiques

Méthode Description
convertFrom ( mixed $source, string $targetType, array $convertedChildProperties = [], Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration = null ) : float | Neos\Error\Messages\Error Actually convert from $source to $targetType, by doing a typecast.

Méthodes protégées

Méthode Description
getConfigurationKeysAndValues ( Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration, array $configurationKeys ) : array Helper method to collect configuration for this class.
parseUsingLocaleIfConfigured ( string $source, Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration ) : float | Error Tries to parse the input using the NumberParser.

Method Details

convertFrom() public méthode

Actually convert from $source to $targetType, by doing a typecast.
public convertFrom ( mixed $source, string $targetType, array $convertedChildProperties = [], Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration = null ) : float | Neos\Error\Messages\Error
$source mixed
$targetType string
$convertedChildProperties array
$configuration Neos\Flow\Property\PropertyMappingConfigurationInterface
Résultat float | Neos\Error\Messages\Error

getConfigurationKeysAndValues() protected méthode

Helper method to collect configuration for this class.
protected getConfigurationKeysAndValues ( Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration, array $configurationKeys ) : array
$configuration Neos\Flow\Property\PropertyMappingConfigurationInterface
$configurationKeys array
Résultat array

parseUsingLocaleIfConfigured() protected méthode

Tries to parse the input using the NumberParser.
protected parseUsingLocaleIfConfigured ( string $source, Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration ) : float | Error
$source string
$configuration Neos\Flow\Property\PropertyMappingConfigurationInterface
Résultat float | Neos\Flow\Validation\Error Parsed float number or error

Property Details

$localizationService protected_oe property

protected Service,Neos\Flow\I18n $localizationService
Résultat Neos\Flow\I18n\Service

$numberParser protected_oe property

protected NumberParser,Neos\Flow\I18n\Parser $numberParser
Résultat Neos\Flow\I18n\Parser\NumberParser

$priority protected_oe property

protected int $priority
Résultat integer

$sourceTypes protected_oe property

protected array $sourceTypes
Résultat array

$targetType protected_oe property

protected string $targetType
Résultat string