You are here

function _webform_help_select in Webform 5

Same name and namespace in other branches
  1. 5.2 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 298

Code

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