You are here

function admin_menu_js in Administration menu 8.3

Same name and namespace in other branches
  1. 5.3 admin_menu.module \admin_menu_js()
  2. 6.3 admin_menu.module \admin_menu_js()

Implements hook_js().

File

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

Code

function admin_menu_js() {
  return [
    'cache' => [
      'callback' => 'admin_menu_js_cache',
      'includes' => [
        'common',
        'theme',
        'unicode',
      ],
      'dependencies' => [
        'devel',
        'filter',
        'user',
      ],
    ],
  ];
}