function content_taxonomy_theme in Content Taxonomy 6
Same name and namespace in other branches
- 6.2 content_taxonomy.module \content_taxonomy_theme()
Implementation of hook_theme().
File
- ./
content_taxonomy.module, line 31 - Defines a field type for referencing a taxonomy term.
Code
function content_taxonomy_theme() {
return array(
'content_taxonomy_formatter_default' => array(
'arguments' => array(
'element' => NULL,
),
),
'content_taxonomy_formatter_link' => array(
'arguments' => array(
'element' => NULL,
),
),
);
}