You are here

function _webform_help_component in Webform 6.3

Same name and namespace in other branches
  1. 7.4 webform.api.php \_webform_help_component()
  2. 7.3 webform.api.php \_webform_help_component()

Module specific instance of hook_help().

This allows each Webform component to add information into hook_help().

Related topics

File

./webform.api.php, line 756
Sample hooks demonstrating usage in Webform.

Code

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