function _webform_help_textarea in Webform 5
Same name and namespace in other branches
- 5.2 components/textarea.inc \_webform_help_textarea()
- 6.2 components/textarea.inc \_webform_help_textarea()
Module specific instance of hook_help
File
- components/
textarea.inc, line 103
Code
function _webform_help_textarea($section) {
switch ($section) {
case 'admin/settings/webform#textarea_description':
$output = t("A large text area that allows for multiple lines of input.");
break;
}
return $output;
}