function tvi_theme in Taxonomy Views Integrator 7
Same name and namespace in other branches
- 6 tvi.module \tvi_theme()
Implements hook_theme().
File
- ./
tvi.module, line 158 - Allow to define views to be used instead of default drupal behavior on taxonomy terms pages.
Code
function tvi_theme() {
return array(
'tvi_breadcrumb' => array(
'arguments' => array(
'term' => NULL,
'view' => NULL,
),
),
'tvi_term_description' => array(
'arguments' => array(
'term' => NULL,
),
),
);
}