Issue #2002482 by chrisjlee, brennanmh, shixish: Rename Views method ensure_path() to ensurePath().

8.0.x
Alex Pott 2013-06-05 08:41:39 +01:00
parent c4e1535220
commit 17c06e0c70
2 changed files with 5 additions and 5 deletions

View File

@ -86,7 +86,7 @@ class ManyToOneHelper {
}
// Cycle through the joins. This isn't as error-safe as the normal
// ensure_path logic. Perhaps it should be.
// ensurePath logic. Perhaps it should be.
$r_join = clone $join;
while ($r_join->leftTable != $base_table) {
$r_join = HandlerBase::getTableJoin($r_join->leftTable, $base_table);

View File

@ -365,7 +365,7 @@ class Sql extends QueryPluginBase {
* added.
*/
public function addTable($table, $relationship = NULL, JoinPluginBase $join = NULL, $alias = NULL) {
if (!$this->ensure_path($table, $relationship, $join)) {
if (!$this->ensurePath($table, $relationship, $join)) {
return FALSE;
}
@ -545,7 +545,7 @@ class Sql extends QueryPluginBase {
// join to a link point, not the base table.
$join = $this->adjust_join($join, $relationship);
if ($this->ensure_path($table, $relationship, $join)) {
if ($this->ensurePath($table, $relationship, $join)) {
// Attempt to eliminate redundant joins. If this table's
// relationship and join exactly matches an existing table's
// relationship and join, we do not have to join to it again;
@ -587,7 +587,7 @@ class Sql extends QueryPluginBase {
* query they will be added, but additional copies will NOT be added
* if the table is already there.
*/
function ensure_path($table, $relationship = NULL, $join = NULL, $traced = array(), $add = array()) {
protected function ensurePath($table, $relationship = NULL, $join = NULL, $traced = array(), $add = array()) {
if (!isset($relationship)) {
$relationship = $this->view->storage->get('base_table');
}
@ -632,7 +632,7 @@ class Sql extends QueryPluginBase {
// Keep looking.
$traced[$join->leftTable] = TRUE;
return $this->ensure_path($join->leftTable, $relationship, $left_join, $traced, $add);
return $this->ensurePath($join->leftTable, $relationship, $left_join, $traced, $add);
}
/**