function nice_menus_theme in Nice Menus 8
Same name and namespace in other branches
- 6.2 nice_menus.module \nice_menus_theme()
- 6 nice_menus.module \nice_menus_theme()
- 7.3 nice_menus.module \nice_menus_theme()
- 7.2 nice_menus.module \nice_menus_theme()
Implements hook_theme().
Parameters
$existing:
$type:
$theme:
$path:
Return value
array
File
- ./
nice_menus.module, line 37 - Module to enable CSS dropdown and flyout menus.
Code
function nice_menus_theme($existing, $type, $theme, $path) {
return array(
'nice_menus' => array(
'template' => 'nice_menus',
'variables' => array(
'menu_output' => NULL,
),
),
);
}