hook_overlay_parent_initialize

7 overlay.api.php hook_overlay_parent_initialize()
8 overlay.api.php hook_overlay_parent_initialize()

Allow modules to act when an overlay parent window is initialized.

The parent window is initialized when a page is displayed in which the overlay might be required to be displayed, so modules can act here if they need to take action to accommodate the possibility of the overlay appearing within a Drupal page.

Related topics

1 function implements hook_overlay_parent_initialize()

1 invocation of hook_overlay_parent_initialize()

File

modules/overlay/overlay.api.php, line 21
Hooks provided by Overlay module.

Code

function hook_overlay_parent_initialize() {
  // Add our custom JavaScript.
  drupal_add_js(drupal_get_path('module', 'hook') . '/hook-overlay.js');
}
Login or register to post comments