You are here

function theme_link_formatter_link_title_plain in Link 7

Formats a link's title as plain text.

File

./link.module, line 1428
Defines simple link field types.

Code

function theme_link_formatter_link_title_plain($vars) {

  // If no title value is present there's no point in continuing.
  if (empty($vars['element']['title'])) {
    return '';
  }
  return check_plain(decode_entities($vars['element']['title']));
}