You are here

function _webform_help_fieldset in Webform 5

Same name and namespace in other branches
  1. 5.2 components/fieldset.inc \_webform_help_fieldset()
  2. 6.2 components/fieldset.inc \_webform_help_fieldset()

Module specific instance of hook_help().

File

components/fieldset.inc, line 77

Code

function _webform_help_fieldset($section) {
  switch ($section) {
    case 'admin/settings/webform#fieldset_description':
      $output = t("Fieldsets allow you to organize complex webforms into groups of fields.");
      break;
  }
  return $output;
}