On this page
function overlay_close_dialog
overlay_close_dialog($redirect = NULL, $redirect_options = array())
Requests that the overlay closes when the page is displayed.
Parameters
$redirect: (optional) The path that should open in the parent window after the overlay closes. If not set, no redirect will be performed on the parent window.
$redirect_options: (optional) An associative array of options to use when generating the redirect URL.
File
- modules/overlay/overlay.module, line 736
- Displays the Drupal administration interface in an overlay.
Code
function overlay_close_dialog($redirect = NULL, $redirect_options = array()) {
$settings = array(
'overlayChild' => array(
'closeOverlay' => TRUE,
),
);
// Tell the child window to perform the redirection when requested to.
if (isset($redirect)) {
$settings['overlayChild']['redirect'] = url($redirect, $redirect_options);
}
drupal_add_js($settings, array('type' => 'setting'));
// Since we are closing the overlay as soon as the page is displayed, we do
// not want to show any of the page's actual content.
overlay_display_empty_page(TRUE);
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!overlay!overlay.module/function/overlay_close_dialog/7.x