You are here

function theme_active_tags_term_list_add in Active Tags 7.2

Theme a list of taxonomy terms with add action.

File

./active_tags.module, line 143
Active Tags widget for free tagging taxonomies

Code

function theme_active_tags_term_list_add($variables) {
  $output = '';
  foreach ($variables['terms'] as $term) {
    $output .= '<div id="at-term-' . $term->tid . '" class="at-term at-term-add"><span class="at-term-text">' . check_plain($term->name) . '</span><span class="at-term-action-add">x</span></div> ';
  }
  return $output;
}