You are here

function _webform_help_grid in Webform 5

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

function _webform_help_select Module specific instance of hook_help

File

components/grid.inc, line 206

Code

function _webform_help_grid($section) {
  switch ($section) {
    case 'admin/settings/webform#grid_description':
      $output = t("Allows creation of grid questions, denoted by radio buttons.");
      break;
  }
  return $output;
}