function admin_menu_system_info_alter in Administration menu 7.3
Same name and namespace in other branches
- 8.3 admin_menu.module \admin_menu_system_info_alter()
Implements hook_system_info_alter().
Indicate that the 'page_bottom' region (in which the administration menu is displayed) is an overlay supplemental region that should be refreshed whenever its content is updated.
See also
File
- ./
admin_menu.module, line 194 - Render an administrative menu as a dropdown menu at the top of the window.
Code
function admin_menu_system_info_alter(&$info, $file, $type) {
if ($type == 'theme') {
$info['overlay_supplemental_regions'][] = 'page_bottom';
}
}