1 admin_bar.module | admin_bar_js() |
Implements hook_js().
File
- core/
modules/ admin_bar/ admin_bar.module, line 327 - Render an administrative bar as a dropdown menu at the top of the window.
Code
function admin_bar_js() {
return array(
'cache' => array(
'callback' => 'admin_bar_js_cache',
'includes' => array('common', 'theme', 'unicode'),
'dependencies' => array('filter', 'user'),
),
);
}