You are here

function webform_civicrm_preprocess_webform_components_form in Webform CiviCRM Integration 7.4

Same name and namespace in other branches
  1. 8.5 webform_civicrm.module \webform_civicrm_preprocess_webform_components_form()
  2. 7.5 webform_civicrm.module \webform_civicrm_preprocess_webform_components_form()

Implements hook_preprocess_HOOK().

File

./webform_civicrm.module, line 573
Webform CiviCRM Integration Module: Links webform submissions to contacts in a CiviCRM database. @author Coleman Watts

Code

function webform_civicrm_preprocess_webform_components_form(&$vars) {
  module_load_include('inc', 'webform_civicrm', 'includes/wf_crm_admin_component');
  wf_crm_admin_component::preprocessComponentsForm($vars['form'], $vars['rows'], $vars['form']['#node']);
}