You are here

function taxonomy_defaults_theme in Taxonomy Defaults 7

Same name and namespace in other branches
  1. 6.2 taxonomy_defaults.module \taxonomy_defaults_theme()
  2. 6 taxonomy_defaults.module \taxonomy_defaults_theme()

Implements hook_theme().

Return value

unknown

File

./taxonomy_defaults.module, line 57
Taxonomy defaults - allows assignment of default terms to node types, either

Code

function taxonomy_defaults_theme() {
  return array(
    'taxonomy_defaults_form' => array(
      'variables' => array(
        'form',
      ),
      'file' => 'taxonomy_defaults.admin.inc',
    ),
  );
}