Is there a way to skip validation for a time field so I can just enter NULL into the database, if there is no start time ?
$this->add(array(
'name' => 'start_time',
'type' => 'Zend\Form\Element\Time',
'attributes' => array(
),
'options' => array(
'label' => 'Start Time',
'format' => 'H:i',
)
));