| 7 overlay.module | overlay_preprocess_page(&$variables) |
| 8 overlay.module | overlay_preprocess_page(&$variables) |
Implements hook_preprocess_page().
Hide tabs inside the overlay.
See also
File
- modules/
overlay/ overlay.module, line 505 - Displays the Drupal administration interface in an overlay.
Code
function overlay_preprocess_page(&$variables) {
if (overlay_get_mode() == 'child') {
unset($variables['tabs']['#primary']);
}
}
Login or register to post comments