for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carbon_Fields\Field;
/**
* Time picker field class.
*/
class Time_Field extends Date_Field {
* {@inheritDoc}
protected $picker_options = array(
'allowInput' => true,
'enableTime' => true,
'noCalendar' => true,
);
protected $storage_format = 'H:i:s';
protected $input_format_php = 'h:i A';
protected $input_format_js = 'h:i K';
}