// Let the themes play too, because prerender is a very themey thing.
foreach ($themes as $theme_name) { $function =
$theme_name . '_views_pre_render';
if (function_exists($function)) { $function($this);
} } $this->display_handler->output =
$this->display_handler->
render();
$exposed_form->
postRender($this->display_handler->output
);
$cache->
postRender($this->display_handler->output
);
// Let modules modify the view output after it is rendered.
$module_handler->
invokeAll('views_post_render',
[$this, &
$this->display_handler->output,
$cache]);
// Let the themes play too, because post render is a very themey thing.
foreach ($themes as $theme_name) { $function =
$theme_name . '_views_post_render';
if (function_exists($function)) { $function($this,
$this->display_handler->output,
$cache);
}