You are here

function active_tags_theme in Active Tags 7.2

Implements hook_theme().

File

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

Code

function active_tags_theme($existing, $type, $theme, $path) {
  return array(
    'active_tags_term_list_remove' => array(
      'variables' => array(
        'terms' => NULL,
      ),
    ),
    'active_tags_term_list_add' => array(
      'variables' => array(
        'terms' => NULL,
      ),
    ),
  );
}