You are here

function theme_link_formatter_title_plain in Link 6.2

Theme function for 'title_plain' text field formatter.

File

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

Code

function theme_link_formatter_title_plain($element) {
  return empty($element['#item']['title']) ? '' : check_plain($element['#item']['title']);
}