You are here

function wf_crm_configure_form_submit in Webform CiviCRM Integration 7.4

Same name and namespace in other branches
  1. 7.5 includes/wf_crm_admin_form.inc \wf_crm_configure_form_submit()
  2. 7.3 webform_civicrm_admin.inc \wf_crm_configure_form_submit()

Drupal FAPI submit callback

File

includes/wf_crm_admin_form.inc, line 2143
Webform CiviCRM module's admin form.

Code

function wf_crm_configure_form_submit($form, &$form_state) {
  $node = node_load($form_state['storage']['nid']);
  $admin_form = new wf_crm_admin_form($form, $form_state, $node);
  $admin_form
    ->postProcess();
}