function _webform_help_textfield in Webform 5
Same name and namespace in other branches
- 5.2 components/textfield.inc \_webform_help_textfield()
- 6.2 components/textfield.inc \_webform_help_textfield()
Module specific instance of hook_help
File
- components/
textfield.inc, line 104
Code
function _webform_help_textfield($section) {
switch ($section) {
case 'admin/settings/webform#textfield_description':
$output = t("Basic textfield type.");
break;
}
return $output;
}