function _accordion_menu_theme in Accordion Menu 7
Same name and namespace in other branches
- 6 includes/info.inc \_accordion_menu_theme()
Implements hook_theme().
1 call to _accordion_menu_theme()
- accordion_menu_theme in ./
accordion_menu.module - Implements hook_theme().
File
- includes/
info.inc, line 41 - Provides info-type hook implementations that are infrequently called.
Code
function _accordion_menu_theme(&$existing, $type, $theme, $path) {
return array(
'accordion_menu_wrapper' => array(
'template' => 'accordion-menu-wrapper',
'variables' => array(
'content' => array(),
'config' => array(),
'delta' => NULL,
),
'pattern' => 'accordion_menu_wrapper__',
'file' => 'includes/view.inc',
),
'accordion_menu_header' => array(
'render element' => 'element',
'file' => 'includes/view.inc',
),
);
}