You are here

function _webform_csv_headers_civicrm_contact in Webform CiviCRM Integration 7.4

Same name and namespace in other branches
  1. 7.5 includes/contact_component.inc \_webform_csv_headers_civicrm_contact()
  2. 7.3 contact_component.inc \_webform_csv_headers_civicrm_contact()

Implements _webform_csv_headers_component().

File

includes/contact_component.inc, line 634

Code

function _webform_csv_headers_civicrm_contact($component, $export_options) {
  $header = array();
  $header[0] = '';
  $header[1] = '';
  $header[2] = $component['name'];
  return $header;
}