function _webform_help_date in Webform 5
Same name and namespace in other branches
- 5.2 components/date.inc \_webform_help_date()
- 6.2 components/date.inc \_webform_help_date()
Module specific instance of hook_help().
File
- components/
date.inc, line 204
Code
function _webform_help_date($section) {
switch ($section) {
case 'admin/settings/webform#date_description':
$output = t("Presents month, day, and year fields.");
break;
}
return $output;
}