function overlay_get_rendered_content in Drupal 7
Returns any rendered content that was stored earlier in the page request.
Return value
An array of all rendered HTML that was stored earlier in the page request, keyed by the identifier with which it was stored. If no content was stored, an empty array is returned.
See also
overlay_store_rendered_content()
1 call to overlay_get_rendered_content()
- overlay_exit in modules/
overlay/ overlay.module - Implements hook_exit().
File
- modules/
overlay/ overlay.module, line 928 - Displays the Drupal administration interface in an overlay.
Code
function overlay_get_rendered_content() {
return overlay_store_rendered_content();
}