function _webform_help_component in Webform 7.4
Same name and namespace in other branches
- 6.3 webform.api.php \_webform_help_component()
- 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 1141 - Sample hooks demonstrating usage in Webform.
Code
function _webform_help_component($section) {
switch ($section) {
case 'admin/config/content/webform#grid_description':
return t('Allows creation of grid questions, denoted by radio buttons.');
}
}