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