You are here

function taxonomy_title_theme in Taxonomy Title 7

Same name and namespace in other branches
  1. 6 taxonomy_title.module \taxonomy_title_theme()

Implements hook_theme().

File

./taxonomy_title.module, line 28
Enhanced control over the heading tag for the taxonomy term list pages.

Code

function taxonomy_title_theme($existing, $type, $theme, $path) {
  $theme = array(
    'taxonomy_title_admin_settings' => array(
      'render element' => 'form',
      'file' => 'taxonomy_title.theme.inc',
    ),
  );
  return $theme;
}