You are here

function _webform_table_data_select in Webform 5

Same name and namespace in other branches
  1. 5.2 components/select.inc \_webform_table_data_select()
  2. 6.2 components/select.inc \_webform_table_data_select()

Return the result of this component's submission for display in a table. The output of this function will be displayed under the "results" tab then "table".

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 human reading.

File

components/select.inc, line 361

Code

function _webform_table_data_select($data) {

  // Set the value as a single string.
  if (is_array($data['value'])) {
    foreach ($data['value'] as $value) {
      if ($value !== '0') {
        $output .= check_plain($value) . "<br />";
      }
    }
  }
  else {
    $output = check_plain(empty($data['value']['0']) ? "" : $data['value']['0']);
  }
  return $output;
}