toolbar_admin_menu.module in Hide the Toolbar 7
Hides Drupal's core Toolbar for users with the Administration Menu.
File
toolbar_admin_menu.moduleView source
<?php
/**
* @file
* Hides Drupal's core Toolbar for users with the Administration Menu.
*/
/**
* Implements hook_page_alter().
*/
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;
}
}
Functions
Name | Description |
---|---|
toolbar_admin_menu_page_alter | Implements hook_page_alter(). |