You are here

function _webform_grid_question_header in Webform 7.4

Create a question header for left, right or left/right question headers.

3 calls to _webform_grid_question_header()
theme_webform_display_grid in components/grid.inc
Format the text output for this component.
_webform_csv_headers_grid in components/grid.inc
Implements _webform_csv_headers_component().
_webform_table_grid in components/grid.inc
Implements _webform_table_component().

File

components/grid.inc, line 822
Webform module grid component.

Code

function _webform_grid_question_header($text) {
  return implode('/', array_filter(explode('|', $text)));
}