On this page
Caution
The documentation you are viewing is for an older version of this component.
Switch to the latest (v3) version.
Elements
DateTime
Laminas\Form\Element\DateTime
is meant to be paired with the
FormDateTime helper for
HTML5 inputs with type "datetime".
This element adds filters and validators to its input filter specification in
order to validate HTML5 datetime input values on the server.
Basic Usage
This element automatically adds a type
attribute of value datetime
.
use Laminas\Form\Element;
use Laminas\Form\Form;
$dateTime = new Element\DateTime('appointment-date-time');
$dateTime->setLabel('Appointment Date/Time');
$dateTime->setAttributes([
'min' => '2010-01-01T00:00:00Z',
'max' => '2020-01-01T00:00:00Z',
'step' => '1', // minutes; default step interval is 1 min
]);
$dateTime->setOptions([
'format' => 'Y-m-d\TH:iP'
]);
$form = new Form('my-form');
$form->add($dateTime);
Using array notation:
use Laminas\Form\Element;
use Laminas\Form\Form;
$form = new Form('my-form');
$form->add([
'type' => Element\DateTime::class,
'name' => 'appointment-date-time',
'options' => [
'label' => 'Appointment Date/Time',
'format' => 'Y-m-d\TH:iP',
],
'attributes' => [
'min' => '2010-01-01T00:00:00Z',
'max' => '2020-01-01T00:00:00Z',
'step' => '1', // minutes; default step interval is 1 min
],
]);
Set all attributes before calling prepare
The
min
,max
, andstep
attributes should be set prior to callingLaminas\Form::prepare()
. Otherwise, the default input specification for the element may not contain the correct validation rules.
Public Methods
The following methods are specific to the DateTime
element; all other methods
defined by the parent Element
class are also
available.
Method signature | Description |
---|---|
getInputSpecification() : array |
See write-up below. |
setOptions(array $options) : void |
Set options for an element of type DateTime . The accepted option, in addition to the inherited options of Laminas\Form\Element is format , which calls setFormat() . |
setFormat(string $format) : void |
Sets the format used to validate the value. Accepts a PHP DateTime compatible string. |
getFormat() : string |
Return the PHP DateTime format used to validate the value. |
getInputSpecification()
returns an input filter specification, which includes
the StringTrim
filter, and appropriate validators based on the values from the
min
, max
, and step
attributes, as well as the format
option, per the
following:
- If the
min
attribute is set, aLaminas\Validator\GreaterThan
validator will be added to ensure the date value is greater than the minimum value. - If the
max
attribute is set, aLaminas\Validator\LessThanValidator
validator will be added to ensure the date value is less than the maximum value. - If the
step
attribute is set to "any", step validations will be skipped. Otherwise, aLaminas\Validator\DateStep
validator will be added to ensure the date value is within a certain interval of minutes (default is 1 minute). - The input filter specification also includes a
Laminas\Validator\Date
validator to ensure the format of the value. If theformat
option is set, that format will be used. Otherwise the default format will be used.