1 admin_bar.module | admin_bar_menu_link_delete($link) |
Implements hook_menu_link_delete().
File
- core/
modules/ admin_bar/ admin_bar.module, line 115 - Render an administrative bar as a dropdown menu at the top of the window.
Code
function admin_bar_menu_link_delete($link) {
// Flush all of our caches to pick up the link.
if ($link['menu_name'] == 'management') {
cache('admin_bar')->flush();
}
}