function overlay_system_info_alter
Implements hook_system_info_alter().
Add default regions for the overlay.
Archivo
- drupal-7.x/
modules/ overlay/ overlay.module, line 456 - Displays the Drupal administration interface in an overlay.
Código
function overlay_system_info_alter(&$info, $file, $type) {
if ($type == 'theme') {
$info['overlay_regions'][] = 'content';
$info['overlay_regions'][] = 'help';
}
}