function theme_webform_display_link in Webform Link 6
Same name and namespace in other branches
- 7 components/link.inc \theme_webform_display_link()
Format the output of data for this component.
1 theme call to theme_webform_display_link()
- _webform_display_link in components/
link.inc - Implements _webform_display_component().
File
- components/
link.inc, line 97 - Webform Link component
Code
function theme_webform_display_link($element) {
return $element['#format'] == 'html' ? l($element['#value'], $element['#value']) : $element['#value'];
}