function _webform_help_hidden in Webform 5
Same name and namespace in other branches
- 5.2 components/hidden.inc \_webform_help_hidden()
- 6.2 components/hidden.inc \_webform_help_hidden()
Module specific instance of hook_help
File
- components/
hidden.inc, line 72
Code
function _webform_help_hidden($section) {
switch ($section) {
case 'admin/settings/webform#hidden_description':
$output = t("Create a field which is not visible to the user, but is recorded with the submission.");
break;
}
return $output;
}