function overlay_get_rendered_content

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()
OverlaySubscriber::onResponse in drupal/core/modules/overlay/lib/Drupal/overlay/EventSubscriber/OverlaySubscriber.php
Performs end of request tasks.

File

drupal/core/modules/overlay/overlay.module, line 840
Displays the Drupal administration interface in an overlay.

Code

function overlay_get_rendered_content() {
  return overlay_store_rendered_content();
}