Issue #2020693 by heddn: Rename Views method post_render() to postRender().
parent
2d4478df3c
commit
9b3f8719d2
|
@ -204,7 +204,7 @@ abstract class CachePluginBase extends PluginBase {
|
|||
* All of the cached result data will be available in $view->result, as well,
|
||||
* so all ids used in the query should be discoverable.
|
||||
*/
|
||||
function post_render(&$output) { }
|
||||
public function postRender(&$output) { }
|
||||
|
||||
/**
|
||||
* Start caching the html head.
|
||||
|
|
|
@ -175,7 +175,7 @@ abstract class ExposedFormPluginBase extends PluginBase {
|
|||
|
||||
function pre_render($values) { }
|
||||
|
||||
function post_render(&$output) { }
|
||||
public function postRender(&$output) { }
|
||||
|
||||
public function preExecute() { }
|
||||
|
||||
|
|
|
@ -1299,10 +1299,10 @@ class ViewExecutable {
|
|||
}
|
||||
}
|
||||
|
||||
$exposed_form->post_render($this->display_handler->output);
|
||||
$exposed_form->postRender($this->display_handler->output);
|
||||
|
||||
if ($cache) {
|
||||
$cache->post_render($this->display_handler->output);
|
||||
$cache->postRender($this->display_handler->output);
|
||||
}
|
||||
|
||||
// Let modules modify the view output after it is rendered.
|
||||
|
|
Loading…
Reference in New Issue