You are here

public static function wf_crm_admin_help::fee 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::fee()
3 calls to wf_crm_admin_help::fee()
wf_crm_admin_help::contribution_total_amount in includes/wf_crm_admin_help.inc
wf_crm_admin_help::membership_fee_amount in includes/wf_crm_admin_help.inc
wf_crm_admin_help::participant_fee_amount in includes/wf_crm_admin_help.inc

File

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

Class

wf_crm_admin_help
Class wf_crm_admin_help Adding a static function to this class with the same name as a field will magically add pop-up help for that field to the admin form.

Code

public static function fee() {
  print '<p>' . t('Once added to the webform, this field can be configured in a number of ways by changing its settings.') . '</p><strong>' . t('Possible Widgets:') . '</strong><ul>' . '<li>' . t('Number (default): Allow the user to enter an amount, optionally constrained by min, max, and increments.') . '</li>' . '<li>' . t('Hidden: Set the amount without giving the user a choice.') . '</li>' . '<li>' . t('Select/Radios: Allow the user to choose from one of several options.') . '</li>' . '<li>' . t('MultiSelect/Checkboxes: Each choice the user selects will be added together.') . '</li>' . '<li>' . t('Grid: Configure multiple items and quantities.') . '</li>' . '</ul>';
}