You are here

word_link.theme.inc in Word Link 7.2

Theme for word_link.

File

theme/word_link.theme.inc
View source
<?php

/**
 * @file
 * Theme for word_link.
 */

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

Functions

Namesort descending Description
theme_word_link Render a word_link link.