You are here

function _webform_csv_data_hidden in Webform 5.2

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

Return the result of a textfield submission. The output of this function will be displayed under the "results" tab then "submissions".

Parameters

$data: An array of information containing the submission result, directly correlating to the webform_submitted_data database schema.

Return value

Textual output formatted for CSV, not including either prefixed or trailing commas.

File

components/hidden.inc, line 200
Webform module hidden component.

Code

function _webform_csv_data_hidden($data) {
  return empty($data['value']['0']) ? '' : $data['value']['0'];
}