You are here

function _webform_csv_headers_time in Webform 6.3

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.2 components/time.inc \_webform_csv_headers_time()
  4. 7.4 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 382
Webform module time component.

Code

function _webform_csv_headers_time($component, $export_options) {
  $header = array();
  $header[0] = '';
  $header[1] = '';
  $header[2] = $component['name'];
  return $header;
}