This field type represents an integer value.
Name | Internal name | Expected input |
---|---|---|
Integer | ezinteger | integer |
Table of contents:
This FieldType stores numeric values which will be provided as integers.
Type | Example |
---|---|
integer |
|
The Value class of this field type contains the following properties:
Property | Type | Description |
---|---|---|
$value | int | This property will be used to store the value provided as an integer. |
$integer->value = 8 |
The Integer
\Value
constructor will initialize a new Value object with the value provided. It expects a numeric, integer value.
use eZ\Publish\Core\FieldType\Integer; // Instantiates a Integer Value object $integerValue = new Integer\Value( 8 ); |
Hash value of this FieldType is simply integer value as a string.
Example:
"8"
String representation of the FieldType's value will return the integer value as a string.
Example:
"8"
This FieldType supports
IntegerValueValidator
, defining maximal and minimal float value:
Name | Type | Default value | Description |
---|---|---|---|
minIntegerValue | int | 0 | This setting defines the minimum value this FieldType will allow as input. |
maxIntegerValue | int |
| This setting defines the maximum value this FieldType will allow as input. |
$validatorConfiguration = array( "minIntegerValue" => 1, "maxIntegerValue" => 24 ); |
This FieldType does not support settings.