function admin_menu_js in Administration menu 5.3
Same name and namespace in other branches
- 8.3 admin_menu.module \admin_menu_js()
- 6.3 admin_menu.module \admin_menu_js()
Implementation of hook_js().
File
- ./
admin_menu.module, line 175 - 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',
),
),
);
}