You are here

function wf_crm_admin_help in Webform CiviCRM Integration 7.4

Same name and namespace in other branches
  1. 7.5 includes/wf_crm_admin_help.inc \wf_crm_admin_help()

Ajax page callback

Parameters

string $topic:

3 string references to 'wf_crm_admin_help'
webform_civicrm_menu in ./webform_civicrm.module
Implements hook_menu().
wf_crm_admin_form::addItem in includes/wf_crm_admin_form.inc
Build a field item for the admin form
wf_crm_contact_component_form_help in includes/contact_component.inc
Adds help to the form

File

includes/wf_crm_admin_help.inc, line 536
Admin form inline-help.

Code

function wf_crm_admin_help($topic) {
  if (method_exists('wf_crm_admin_help', $topic)) {
    wf_crm_admin_help::$topic();
  }
  elseif (strpos($topic, 'custom_') === 0) {
    wf_crm_admin_help::custom($topic);
  }
  elseif (strpos($topic, 'fieldset_') === 0) {
    wf_crm_admin_help::fieldset($topic);
  }
  exit;
}