Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
9b3f8719
Commit
9b3f8719
authored
Jun 17, 2013
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2020693
by heddn: Rename Views method post_render() to postRender().
parent
2d4478df
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
core/modules/views/lib/Drupal/views/Plugin/views/cache/CachePluginBase.php
...s/lib/Drupal/views/Plugin/views/cache/CachePluginBase.php
+1
-1
core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php
...views/Plugin/views/exposed_form/ExposedFormPluginBase.php
+1
-1
core/modules/views/lib/Drupal/views/ViewExecutable.php
core/modules/views/lib/Drupal/views/ViewExecutable.php
+2
-2
No files found.
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
Markdown
is supported
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