You are here

function _webform_csv_headers_time in Webform 7.4

Same name and namespace in other branches
  1. 5.2 components/time.inc \_webform_csv_headers_time()
  2. 5 components/time.inc \_webform_csv_headers_time()
  3. 6.3 components/time.inc \_webform_csv_headers_time()
  4. 6.2 components/time.inc \_webform_csv_headers_time()
  5. 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;
}