function _webform_csv_headers_time in Webform 7.4
Same name and namespace in other branches
- 5.2 components/time.inc \_webform_csv_headers_time()
- 5 components/time.inc \_webform_csv_headers_time()
- 6.3 components/time.inc \_webform_csv_headers_time()
- 6.2 components/time.inc \_webform_csv_headers_time()
- 7.3 components/time.inc \_webform_csv_headers_time()
Implements _webform_csv_headers_component().
File
- components/
time.inc, line 467 - Webform module time component.
Code
function _webform_csv_headers_time($component, $export_options) {
$header = array();
$header[0] = '';
$header[1] = '';
$header[2] = $export_options['header_keys'] ? $component['form_key'] : $component['name'];
return $header;
}