This field type Field Type represents an integer value.
...
Table of Contents | ||
---|---|---|
|
Description
This FieldType Field Type stores numeric values which will be provided as integers.
Input expectations
Type | Example |
---|---|
integer |
|
Value object
...
Hash format
Hash value of this FieldType Field Type is simply integer value as a string.
...
String representation of the FieldTypeField Type's value will return the integer value as a string.
Example:
"8"
Validation
This FieldType Field Type supports IntegerValueValidator
, defining maximal and minimal float value:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
$validatorConfiguration = array( "minIntegerValue" => 1, "maxIntegerValue" => 24 ); |
Settings
This FieldType Field Type does not support settings.
...