...
Type | Example |
---|
float | 194079.572
|
int | 144 |
Value object
Properties
The Value class of this field type contains the following properties:
Property | Type | Description |
---|
$value | float | This property will be used to store the value provided as a float. |
Code Block |
---|
language | php |
---|
title | Value object content example |
---|
linenumbers | true |
---|
|
use eZ\Publish\Core\FieldType\Float\Type;
// Instantiates a Float Value object
$floatValue = new Type\Value();
$float->value = 284.773 |
Constructor
The Float
\Value
constructor will initialize a new Value object with the value provided. It expects a numeric value with or without decimals.
Code Block |
---|
language | php |
---|
title | Constructor example |
---|
linenumbers | true |
---|
|
use eZ\Publish\Core\FieldType\Float\Type;
// Instantiates a Float Value object
$floatValue = new Type\Value( 284.773 ); |
Validation
This FieldType supports FloatValueValidator
, defining maximal and minimal float value:
...
This FieldType does not support settings.
Value object
Properties
The Value class of this field type contains the following properties:
Property | Type | Description |
---|
$value | float | This property will be used to store the value provided as a float. |
Code Block |
---|
language | php |
---|
title | Value object content example |
---|
linenumbers | true |
---|
|
use eZ\Publish\Core\FieldType\Float\Type;
// Instantiates a Float Value object
$floatValue = new Type\Value();
$float->value = 284.773 |
Constructor
The Float
\Value
constructor will initialize a new Value object with the value provided. It expects a numeric value with or without decimals.
Code Block |
---|
language | php |
---|
title | Constructor example |
---|
linenumbers | true |
---|
|
use eZ\Publish\Core\FieldType\Float\Type;
// Instantiates a Float Value object
$floatValue = new Type\Value( 284.773 ); |