FormDefinitionArrayConverter extends AbstractTypeConverter
Converter for form definition arrays
Table of Contents
Properties
Methods
- convertFrom() : FormDefinitionArray
- Convert from $source to $targetType, a noop if the source is an array.
- getSourceChildPropertiesToBeConverted() : array<string|int, mixed>
- Return a list of sub-properties inside the source object.
- getTargetTypeForSource() : string
- Returns the type for a given source, depending on e.g. the __type setting or other properties.
- getTypeOfChildProperty() : string
- Return the type of a given sub-property inside the $targetType
- filterEmptyArrays() : array<string|int, mixed>
- Remove keys from an array if the key value is an empty array
- getBackendUser() : BackendUserAuthentication
- getFormDefinitionConversionService() : FormDefinitionConversionService
- getFormDefinitionValidationService() : FormDefinitionValidationService
- retrieveSessionToken() : string
- transformMultiValueElementsForFormFramework() : array<string|int, mixed>
- Some data which is build by the form editor needs a transformation before it can be used by the framework.
Properties
$configurationService
protected
ConfigurationService
$configurationService
Methods
convertFrom()
Convert from $source to $targetType, a noop if the source is an array.
public
convertFrom(string $source, string $targetType[, array<string|int, mixed> $convertedChildProperties = [] ][, PropertyMappingConfigurationInterface|null $configuration = null ]) : FormDefinitionArray
If it is an empty string it will be converted to an empty array.
Parameters
- $source : string
- $targetType : string
- $convertedChildProperties : array<string|int, mixed> = []
- $configuration : PropertyMappingConfigurationInterface|null = null
Tags
Return values
FormDefinitionArraygetSourceChildPropertiesToBeConverted()
Return a list of sub-properties inside the source object.
public
getSourceChildPropertiesToBeConverted(mixed $source) : array<string|int, mixed>
Parameters
- $source : mixed
Tags
Return values
array<string|int, mixed>getTargetTypeForSource()
Returns the type for a given source, depending on e.g. the __type setting or other properties.
public
getTargetTypeForSource(mixed $source, string $originalTargetType[, PropertyMappingConfigurationInterface|null $configuration = null ]) : string
Parameters
- $source : mixed
-
the source data
- $originalTargetType : string
-
the type we originally want to convert to
- $configuration : PropertyMappingConfigurationInterface|null = null
Tags
Return values
stringgetTypeOfChildProperty()
Return the type of a given sub-property inside the $targetType
public
getTypeOfChildProperty(string $targetType, string $propertyName, PropertyMappingConfigurationInterface $configuration) : string
Parameters
- $targetType : string
- $propertyName : string
- $configuration : PropertyMappingConfigurationInterface
Tags
Return values
string —the type of $propertyName in $targetType
filterEmptyArrays()
Remove keys from an array if the key value is an empty array
protected
filterEmptyArrays(array<string|int, mixed> $array) : array<string|int, mixed>
Parameters
- $array : array<string|int, mixed>
Tags
Return values
array<string|int, mixed>getBackendUser()
protected
getBackendUser() : BackendUserAuthentication
Return values
BackendUserAuthenticationgetFormDefinitionConversionService()
protected
getFormDefinitionConversionService() : FormDefinitionConversionService
Return values
FormDefinitionConversionServicegetFormDefinitionValidationService()
protected
getFormDefinitionValidationService() : FormDefinitionValidationService
Return values
FormDefinitionValidationServiceretrieveSessionToken()
protected
retrieveSessionToken() : string
Return values
stringtransformMultiValueElementsForFormFramework()
Some data which is build by the form editor needs a transformation before it can be used by the framework.
protected
transformMultiValueElementsForFormFramework(array<string|int, mixed> $input) : array<string|int, mixed>
Multivalue elements like select elements produce data like:
[ _label => 'label' _value => 'value' ]
This method transforms this into:
[ 'value' => 'label' ]
Parameters
- $input : array<string|int, mixed>