You are here

function theme_link_formatter_url in Link 6.2

Same name and namespace in other branches
  1. 6 link.module \theme_link_formatter_url()

Theme function for 'url' text field formatter.

File

./link.theme.inc, line 96
Theme functions for the link module.

Code

function theme_link_formatter_url($element) {
  return $element['#item']['url'] ? l($element['#item']['display_url'], $element['#item']['url'], $element['#item']) : '';
}