| 7 overlay.module | overlay_request_refresh($region) |
| 8 overlay.module | overlay_request_refresh($region) |
Request that the parent window refresh a particular page region.
Parameters
$region: The name of the page region to refresh. The parent window will trigger a refresh of this region on the next page load.
See also
Drupal.overlay.refreshRegions()
1 call to overlay_request_refresh()
File
- modules/
overlay/ overlay.module, line 935 - Displays the Drupal administration interface in an overlay.
Code
function overlay_request_refresh($region) {
$class = drupal_region_class($region);
$_SESSION['overlay_regions_to_refresh'][] = array($class => $region);
}
Login or register to post comments