General

  eZ Systems Website
  Technical documentation
  Editor documentation

This Documentation contains:
 
Technical documentation:



⚠ WARNING ! This documentation is deprecated !

Please go to the current Technical Documentation

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This field type Field Type represents an integer value.

...

Table of Contents
minLevel2

Description

This FieldType Field Type stores numeric values which will be provided as integers.

Input expectations

TypeExample
integer

2397

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
languagephp
titleExample of validator configuration in PHP
linenumberstrue
$validatorConfiguration = array(
	"minIntegerValue" => 1,
	"maxIntegerValue" => 24
);

Settings

This FieldType Field Type does not support settings.

...