You are here

function _webform_help_time in Webform 5

Same name and namespace in other branches
  1. 5.2 components/time.inc \_webform_help_time()
  2. 6.2 components/time.inc \_webform_help_time()

Module specific instance of hook_help

File

components/time.inc, line 201

Code

function _webform_help_time($section) {
  switch ($section) {
    case 'admin/settings/webform#time_description':
      $output = t("Presents the user with hour and minute fields. Optional am/pm fields.");
      break;
  }
  return $output;
}