You are here

function _webform_help_fieldset in Webform 6.2

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

Module specific instance of hook_help().

File

components/fieldset.inc, line 96
Webform module fieldset component.

Code

function _webform_help_fieldset($section) {
  switch ($section) {
    case 'admin/settings/webform#fieldset_description':
      return t('Fieldsets allow you to organize multiple fields into groups.');
  }
}