Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
9b3f8719
Commit
9b3f8719
authored
Jun 17, 2013
by
webchick
Browse files
Issue
#2020693
by heddn: Rename Views method post_render() to postRender().
parent
2d4478df
Changes
3
Hide whitespace changes
Inline
Side-by-side
core/modules/views/lib/Drupal/views/Plugin/views/cache/CachePluginBase.php
View file @
9b3f8719
...
...
@@ -204,7 +204,7 @@ public function cacheFlush() {
* 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
_r
ender
(
&
$output
)
{
}
public
function
post
R
ender
(
&
$output
)
{
}
/**
* Start caching the html head.
...
...
core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php
View file @
9b3f8719
...
...
@@ -175,7 +175,7 @@ public function query() {
function
pre_render
(
$values
)
{
}
function
post
_r
ender
(
&
$output
)
{
}
public
function
post
R
ender
(
&
$output
)
{
}
public
function
preExecute
()
{
}
...
...
core/modules/views/lib/Drupal/views/ViewExecutable.php
View file @
9b3f8719
...
...
@@ -1299,10 +1299,10 @@ public function render($display_id = NULL) {
}
}
$exposed_form
->
post
_r
ender
(
$this
->
display_handler
->
output
);
$exposed_form
->
post
R
ender
(
$this
->
display_handler
->
output
);
if
(
$cache
)
{
$cache
->
post
_r
ender
(
$this
->
display_handler
->
output
);
$cache
->
post
R
ender
(
$this
->
display_handler
->
output
);
}
// Let modules modify the view output after it is rendered.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment