You are here

function views_query::adjust_join in Views (for Drupal 7) 6.2

Fix a join to adhere to the proper relationship; the left table can vary based upon what relationship items are joined in on.

5 calls to views_query::adjust_join()
views_query::add_relationship in includes/query.inc
A relationship is an alternative endpoint to a series of table joins. Relationships must be aliases of the primary table and they must join either to the primary table or to a pre-existing relationship.
views_query::add_table in includes/query.inc
Add a table to the query, ensuring the path exists.
views_query::ensure_path in includes/query.inc
Make sure that the specified table can be properly linked to the primary table in the JOINs. This function uses recursion. If the tables needed to complete the path back to the primary table are not in the query they will be added, but additional…
views_query::ensure_table in includes/query.inc
Ensure a table exists in the queue; if it already exists it won't do anything, but if it doesn't it will add the table queue. It will ensure a path leads back to the relationship table.
views_query::queue_table in includes/query.inc
Add a table to the query without ensuring the path.

File

includes/query.inc, line 525
query.inc Defines the query object which is the underlying layer in a View.

Class

views_query
Object used to create a SELECT query.

Code

function adjust_join($join, $relationship) {
  if (!empty($join->adjusted)) {
    return $join;
  }
  if (empty($relationship) || empty($this->relationships[$relationship])) {
    return $join;
  }

  // Adjusts the left table for our relationship.
  if ($relationship != $this->base_table) {

    // If we're linking to the primary table, the relationship to use will
    // be the prior relationship. Unless it's a direct link.
    // Safety! Don't modify an original here.
    $join = drupal_clone($join);

    // Do we need to try to ensure a path?
    if ($join->left_table != $this->relationships[$relationship]['table'] && $join->left_table != $this->relationships[$relationship]['base'] && !isset($this->tables[$relationship][$join->left_table]['alias'])) {
      $this
        ->ensure_table($join->left_table, $relationship);
    }

    // First, if this is our link point/anchor table, just use the relationship
    if ($join->left_table == $this->relationships[$relationship]['table']) {
      $join->left_table = $relationship;
    }
    else {
      if (isset($this->tables[$relationship][$join->left_table]['alias'])) {
        $join->left_table = $this->tables[$relationship][$join->left_table]['alias'];
      }
      else {
        if (isset($this->table_queue[$relationship]['alias'])) {
          $join->left_table = $this->table_queue[$relationship]['alias'];
        }
      }
    }
  }
  $join->adjusted = TRUE;
  return $join;
}