function _webform_csv_headers_mapping in Webform Bonus Pack 6.3
Same name and namespace in other branches
- 7.3 components/mapping.inc \_webform_csv_headers_mapping()
Implementation of _webform_csv_data_component().
File
- components/
mapping.inc, line 217 - Webform module mapping component.
Code
function _webform_csv_headers_mapping($component, $export_options) {
$header = array();
$header[0] = '';
$header[1] = '';
$header[2] = $component['name'];
return $header;
}