You are here

function theme_word_link in Word Link 7.2

Render a word_link link.

1 theme call to theme_word_link()
word_link_convert_text_recursively in ./word_link.module
Helper function for converting text.

File

theme/word_link.theme.inc, line 11
Theme for word_link.

Code

function theme_word_link($vars) {
  $attributes = drupal_attributes($vars['attributes']);
  return '<' . $vars['tag'] . $attributes . '>' . check_plain($vars['text']) . '</' . $vars['tag'] . '>';
}