function _webform_defaults_time in Webform 7.3
Same name and namespace in other branches
- 5.2 components/time.inc \_webform_defaults_time()
- 6.3 components/time.inc \_webform_defaults_time()
- 6.2 components/time.inc \_webform_defaults_time()
- 7.4 components/time.inc \_webform_defaults_time()
Implements _webform_defaults_component().
File
- components/
time.inc, line 14 - Webform module time component.
Code
function _webform_defaults_time() {
return array(
'name' => '',
'form_key' => NULL,
'pid' => 0,
'weight' => 0,
'value' => '',
'mandatory' => 0,
'extra' => array(
'timezone' => 'user',
'hourformat' => '12-hour',
'minuteincrements' => 1,
'title_display' => 0,
'description' => '',
'private' => FALSE,
),
);
}