function template_process_overlay in Drupal 7
Implements template_process_HOOK() for overlay.tpl.php
Places the rendered HTML for the page body into a top level variable.
See also
File
- modules/
overlay/ overlay.module, line 528 - Displays the Drupal administration interface in an overlay.
Code
function template_process_overlay(&$variables) {
$variables['page'] = $variables['page']['#children'];
}