You are here

function wf_crm_configure_form 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()
  2. 7.3 webform_civicrm_admin.inc \wf_crm_configure_form()

Drupal FAPI form builder callback

1 string reference to 'wf_crm_configure_form'
webform_civicrm_menu in ./webform_civicrm.module
Implements hook_menu().

File

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

Code

function wf_crm_configure_form($form, &$form_state, $node) {
  $admin_form = new wf_crm_admin_form(array(), $form_state, $node);
  return $admin_form
    ->buildForm();
}