function dhtml_menu_theme in DHTML Menu 6
Same name and namespace in other branches
- 6.2 dhtml_menu.module \dhtml_menu_theme()
Implementation of hook_theme().
File
- ./
dhtml_menu.module, line 83 - dhtml_menu.modle Allow click expansion of the menu tree via javascript, with graceful degradation.
Code
function dhtml_menu_theme($existing, $type) {
$theme['dhtml_menu_item'] = array(
'arguments' => array(
'item' => array(),
'id' => NULL,
),
'file' => 'dhtml_menu.inc',
);
$theme['dhtml_menu_tree'] = array(
'arguments' => array(
'tree' => array(),
'parent' => NULL,
'pid' => NULL,
),
'file' => 'dhtml_menu.inc',
);
return $theme;
}