function theme_webform_display_telephone in Webform Telephone 7
Format the output of data for this component.
1 theme call to theme_webform_display_telephone()
- _webform_display_telephone in components/
telephone.inc - Implements _webform_display_component().
File
- components/
telephone.inc, line 165
Code
function theme_webform_display_telephone($variables) {
$element = $variables['element'];
$url = 'tel:' . rawurlencode(preg_replace('/\\s+/', '', $element['#value']));
$value = $element['#format'] == 'html' ? l($element['#value'], $url, array(
'external' => TRUE,
)) : $element['#value'];
return $value !== '' ? $value : '';
}