You are here

function _accordion_menu_theme in Accordion Menu 6

Same name and namespace in other branches
  1. 7 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 35
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',
      'arguments' => array(
        'content' => array(),
        'config' => array(),
        'delta' => NULL,
      ),
      'pattern' => 'accordion_menu_wrapper__',
      'file' => 'includes/view.inc',
    ),
    'accordion_menu_header' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'includes/view.inc',
    ),
  );
}