function overlay_preprocess_page in Drupal 7
Implements hook_preprocess_page().
If the current page request is inside the overlay, hide the tabs.
See also
File
- modules/
overlay/ overlay.module, line 539 - Displays the Drupal administration interface in an overlay.
Code
function overlay_preprocess_page(&$variables) {
if (overlay_get_mode() == 'child') {
unset($variables['tabs']['#primary']);
}
}