You are here

function block_tracker_theme in Util 7

Same name and namespace in other branches
  1. 6.3 contribs/block_tracker/block_tracker.module \block_tracker_theme()

Implements hook_theme().

File

contribs/block_tracker/block_tracker.module, line 27
Track block usage.

Code

function block_tracker_theme() {
  return array(
    'block_tracker_item' => array(
      'variables' => array(
        'item' => NULL,
      ),
    ),
  );
}