You are here

function dhtml_menu_theme in DHTML Menu 6.2

Same name and namespace in other branches
  1. 6 dhtml_menu.module \dhtml_menu_theme()

Implementation of hook_theme().

File

./dhtml_menu.module, line 87
dhtml_menu.module Allow click expansion of the menu tree via javascript, with graceful degradation.

Code

function dhtml_menu_theme($existing, $type) {
  $theme['dhtml_menu_item'] = array(
    'file' => 'dhtml_menu.theme.inc',
    'arguments' => array(
      'item' => array(),
      'id' => NULL,
    ),
  );
  $theme['dhtml_menu_tree'] = array(
    'file' => 'dhtml_menu.theme.inc',
    'arguments' => array(
      'tree' => array(),
      'parent' => NULL,
      'pid' => NULL,
    ),
  );
  return $theme;
}