function _webform_submission_display_time in Webform 5
Same name and namespace in other branches
- 5.2 components/time.inc \_webform_submission_display_time()
- 6.2 components/time.inc \_webform_submission_display_time()
Display the result of a textfield submission. The output of this function will be displayed under the "results" tab then "submissions".
Parameters
$data: An array of information containing the submission result, directly correlating to the webform_submitted_data database schema.
$component: An array of information describing the component, directly correlating to the webform_component database schema.
Return value
Textual output formatted for human reading.
File
- components/
time.inc, line 155
Code
function _webform_submission_display_time($data, $component, $enabled = false) {
$form_item = _webform_render_time($component);
$form_item['minute']['#default_value'] = $data['value']['1'];
$form_item['minute']['#disabled'] = !$enabled;
$form_item['hour']['#disabled'] = !$enabled;
$form_item['ampm']['#disabled'] = !$enabled;
// Match the hourly data to the hour format.
$timestamp = strtotime($data['value']['0'] . ":" . $data['value']['1'] . $data['value']['2']);
if ($component['extra']['hourformat'] == "24-hour") {
$form_item['hour']['#default_value'] = date("H", $timestamp);
}
else {
$form_item['hour']['#default_value'] = date("g", $timestamp);
$form_item['ampm']['#default_value'] = $data['value']['2'];
}
return $form_item;
}