You are here

function taxonomy_menu_block_theme in Taxonomy menu block 7

Implements hook_theme().

File

./taxonomy_menu_block.module, line 85
Taxonomy Menu Block module allows you to make menu blocks out of your taxonomies in a very performant way.

Code

function taxonomy_menu_block_theme() {
  return array(
    'taxonomy_menu_block' => array(
      'variables' => array(
        'items' => NULL,
        'config' => NULL,
      ),
    ),
  );
}