You are here

function taxonomy_defaults_theme in Taxonomy Defaults 6

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

Implementation of hook_theme().

Return value

unknown

File

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

Code

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