function _webform_display_countdown in Webform Countdown 7
Same name and namespace in other branches
- 7.2 webform_countdown.module \_webform_display_countdown()
Implements _webform_display_component().
File
- ./
webform_countdown.module, line 198 - Webform countdown code module.
Code
function _webform_display_countdown($component, $value, $format = 'html') {
return array(
'#title' => $component['name'],
'#weight' => $component['weight'],
'#theme' => 'webform_display_countdown',
'#theme_wrappers' => $format == 'html' ? array(
'webform_element',
) : array(
'webform_element_text',
),
'#format' => $format,
'#value' => $value[0],
'#translatable' => array(
'title',
),
);
}