You are here

function _webform_csv_headers_hidden in Webform 6.2

Same name and namespace in other branches
  1. 5.2 components/hidden.inc \_webform_csv_headers_hidden()
  2. 5 components/hidden.inc \_webform_csv_headers_hidden()
  3. 6.3 components/hidden.inc \_webform_csv_headers_hidden()
  4. 7.4 components/hidden.inc \_webform_csv_headers_hidden()
  5. 7.3 components/hidden.inc \_webform_csv_headers_hidden()

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/hidden.inc, line 182
Webform module hidden component.

Code

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