You are here

function admin_menu_js in Administration menu 6.3

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

Implements hook_js().

File

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

Code

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