HFP-1897 Set correct field types and boundaries
parent
47be831f49
commit
a30a93e62e
|
@ -4220,16 +4220,20 @@ class H5PContentValidator {
|
||||||
),
|
),
|
||||||
(object) array(
|
(object) array(
|
||||||
'name' => 'yearFrom',
|
'name' => 'yearFrom',
|
||||||
'type' => 'text',
|
'type' => 'number',
|
||||||
'label' => $this->h5pF->t('Years (from-to)'),
|
'label' => $this->h5pF->t('Years (from-to)'),
|
||||||
'placeholder' => '1991',
|
'placeholder' => '1991',
|
||||||
|
'min' => '-9999',
|
||||||
|
'max' => '9999',
|
||||||
'optional' => TRUE
|
'optional' => TRUE
|
||||||
),
|
),
|
||||||
(object) array(
|
(object) array(
|
||||||
'name' => 'yearTo',
|
'name' => 'yearTo',
|
||||||
'type' => 'text',
|
'type' => 'number',
|
||||||
'label' => 'hiddenLabel',
|
'label' => 'hiddenLabel',
|
||||||
'placeholder' => '1992',
|
'placeholder' => '1992',
|
||||||
|
'min' => '-9999',
|
||||||
|
'max' => '9999',
|
||||||
'optional' => TRUE
|
'optional' => TRUE
|
||||||
),
|
),
|
||||||
(object) array(
|
(object) array(
|
||||||
|
|
Loading…
Reference in New Issue