You are here

function admin_menu_hook_info in Administration menu 8.3

Implements hook_hook_info().

File

./admin_menu.module, line 34
Render an administrative menu as a dropdown menu at the top of the window.

Code

function admin_menu_hook_info() {
  $hooks = [
    'admin_menu_cache_info',
    'admin_menu_map',
    'admin_menu_output_build',
    'admin_menu_output_alter',
    'admin_menu_replacements',
  ];
  $hooks = array_fill_keys($hooks, [
    'group' => 'admin_menu',
  ]);
  return $hooks;
}