function theme_webform_display_link in Webform Link 7
Same name and namespace in other branches
- 6 components/link.inc \theme_webform_display_link()
Custom theme function for collected link.
1 theme call to theme_webform_display_link()
- _webform_display_link in components/
link.inc - Implements _webform_display_component().
File
- components/
link.inc, line 94 - Webform Link component
Code
function theme_webform_display_link($variables) {
$element = $variables['element'];
$value = $element['#value'];
return $value;
}