function theme_webform_display_countdown in Webform Countdown 7.2
Same name and namespace in other branches
- 7 webform_countdown.module \theme_webform_display_countdown()
Custom Theme function for collected countdown data.
1 theme call to theme_webform_display_countdown()
- _webform_display_countdown in ./
webform_countdown.module - Implements _webform_display_component().
File
- ./
webform_countdown.module, line 232 - Webform countdown code module.
Code
function theme_webform_display_countdown($variables) {
$element = $variables['element'];
$output = $element['#format'] == 'html' ? nl2br(check_plain($element['#value'])) : $element['#value'];
if (drupal_strlen($output) > 80) {
$output = $element['#format'] == 'html' ? '<div class="webform-long-answer">' . $output . '</div>' : $output;
}
return $output !== '' ? $output : ' ';
}