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
9dd39359
Commit
9dd39359
authored
May 29, 2013
by
alexpott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2002884
by aspilicious: Rename Views method left_query() to leftQuery().
parent
c1d7f6f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php
...b/Drupal/views/Plugin/views/relationship/GroupwiseMax.php
+3
-3
No files found.
core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php
View file @
9dd39359
...
...
@@ -187,7 +187,7 @@ public function submitOptionsForm(&$form, &$form_state) {
* @return
* The subquery SQL string, ready for use in the main query.
*/
function
left
_q
uery
(
$options
)
{
protected
function
left
Q
uery
(
$options
)
{
// Either load another view, or create one on the fly.
if
(
$options
[
'subquery_view'
])
{
$temp_view
=
views_get_view
(
$options
[
'subquery_view'
]);
...
...
@@ -357,7 +357,7 @@ public function query() {
if
(
$this
->
options
[
'subquery_regenerate'
])
{
// For testing only, regenerate the subquery each time.
$def
[
'left_query'
]
=
$this
->
left
_q
uery
(
$this
->
options
);
$def
[
'left_query'
]
=
$this
->
left
Q
uery
(
$this
->
options
);
}
else
{
// Get the stored subquery SQL string.
...
...
@@ -367,7 +367,7 @@ public function query() {
$def
[
'left_query'
]
=
$cache
->
data
;
}
else
{
$def
[
'left_query'
]
=
$this
->
left
_q
uery
(
$this
->
options
);
$def
[
'left_query'
]
=
$this
->
left
Q
uery
(
$this
->
options
);
cache
(
'views_results'
)
->
set
(
$cid
,
$def
[
'left_query'
]);
}
}
...
...
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