You are here

function _webform_csv_headers_date in Webform 5.2

Same name and namespace in other branches
  1. 5 components/date.inc \_webform_csv_headers_date()
  2. 6.3 components/date.inc \_webform_csv_headers_date()
  3. 6.2 components/date.inc \_webform_csv_headers_date()
  4. 7.4 components/date.inc \_webform_csv_headers_date()
  5. 7.3 components/date.inc \_webform_csv_headers_date()

Return the header information for this component to be displayed in a comma seperated value file. The output of this function will be displayed under the "results" tab then "download".

Parameters

$component: An array of information describing the component, directly correlating to the webform_component database schema.

Return value

An array of data to be displayed in the first three rows of a CSV file, not including either prefixed or trailing commas.

File

components/date.inc, line 407
Webform module date component.

Code

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