You are here

function toolbar_admin_menu_page_alter in Hide the Toolbar 7

Implements hook_page_alter().

File

./toolbar_admin_menu.module, line 11
Hides Drupal's core Toolbar for users with the Administration Menu.

Code

function toolbar_admin_menu_page_alter(&$page) {

  // Hide Toolbar for those who can access the Admin Menu.
  if (user_access('access administration menu') && !empty($page['page_top']['toolbar'])) {
    $page['page_top']['toolbar']['#access'] = FALSE;
  }
}