function _webform_csv_headers_matrix in Webform Matrix Component 7
Same name and namespace in other branches
- 6 components/matrix.inc \_webform_csv_headers_matrix()
- 7.4 components/matrix.inc \_webform_csv_headers_matrix()
- 7.2 components/matrix.inc \_webform_csv_headers_matrix()
- 7.3 components/matrix.inc \_webform_csv_headers_matrix()
Implements _webform_csv_headers_component().
File
- components/
matrix.inc, line 689 - Webform module matrix component.
Code
function _webform_csv_headers_matrix($component, $export_options) {
$header = array();
$sub_elements = $component['extra']['element'];
foreach ($sub_elements as $sub_element) {
$header[1][] = $component['name'];
$header[2][] = $sub_element['title'];
}
return $header;
}