function tagadelic_theme in Tagadelic 8.3
Same name and namespace in other branches
- 6 tagadelic.module \tagadelic_theme()
- 7 tagadelic.module \tagadelic_theme()
Implements hook_theme().
File
- ./
tagadelic.module, line 14 - This module provides a taxonomy tag cloud.
Code
function tagadelic_theme($existing, $type, $theme, $path) {
return array(
'tagadelic_taxonomy_cloud' => array(
'variables' => array(
'tags' => NULL,
),
'template' => 'tagadelic-taxonomy-cloud',
),
'tagadelic_view_tagadelic_list' => array(
'file' => 'tagadelic.theme.inc',
),
);
}