You are here

function webmaster_menu_theme in Webmaster menu 7

Implements hook_theme().

File

./webmaster_menu.module, line 323
Display a dropdown menu at the top of the window.

Code

function webmaster_menu_theme() {
  return array(
    'webmaster_menu_toolbar' => array(
      'variables' => array(
        'tree' => array(),
      ),
    ),
    'webmaster_menu_tree' => array(
      'variables' => array(
        'tree' => array(),
      ),
    ),
    'webmaster_menu_item' => array(
      'variables' => array(
        'menu_item' => array(),
      ),
    ),
  );
}