function _webform_help_email in Webform 5
Same name and namespace in other branches
- 5.2 components/email.inc \_webform_help_email()
- 6.2 components/email.inc \_webform_help_email()
Module specific instance of hook_help().
File
- components/
email.inc, line 119
Code
function _webform_help_email($section) {
switch ($section) {
case 'admin/settings/webform#email_description':
$output = t("A textfield that automatically fills in logged-in users e-mail.");
break;
}
return $output;
}