You are here

function _webform_help_select in Webform 5.2

Same name and namespace in other branches
  1. 5 components/select.inc \_webform_help_select()
  2. 6.2 components/select.inc \_webform_help_select()

Module specific instance of hook_help().

File

components/select.inc, line 317
Webform module multiple select component.

Code

function _webform_help_select($section) {
  switch ($section) {
    case 'admin/settings/webform#select_description':
      return t('Allows creation of checkboxes, radio buttons, or select menus.');
  }
}