function tvi_theme in Taxonomy Views Integrator 6
Same name and namespace in other branches
- 7 tvi.module \tvi_theme()
Implements hook_theme().
See also
http://api.drupal.org/api/function/hook_theme/6
File
- ./
tvi.module, line 132 - Enables use of views for taxonomy pages.
Code
function tvi_theme($existing, $type, $theme, $path) {
return array(
'tvi_title' => array(
'arguments' => array(
'term' => NULL,
'view' => NULL,
),
),
'tvi_breadcrumb' => array(
'arguments' => array(
'term' => NULL,
'view' => NULL,
),
),
'tvi_term_description' => array(
'arguments' => array(
'term' => NULL,
),
),
);
}