You are here

function views_handler::set_relationship in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 includes/handlers.inc \views_handler::set_relationship()
  2. 7.3 includes/handlers.inc \views_handler::set_relationship()

Called just prior to query(), this lets a handler set up any relationship it needs.

File

includes/handlers.inc, line 621
handlers.inc Defines the various handler objects to help build and display views.

Class

views_handler
Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.

Code

function set_relationship() {

  // Ensure this gets set to something.
  $this->relationship = NULL;

  // Don't process non-existant relationships.
  if (empty($this->options['relationship']) || $this->options['relationship'] == 'none') {
    return;
  }
  $relationship = $this->options['relationship'];

  // Ignore missing/broken relationships.
  if (empty($this->view->relationship[$relationship])) {
    return;
  }

  // Check to see if the relationship has already processed. If not, then we
  // cannot process it.
  if (empty($this->view->relationship[$relationship]->alias)) {
    return;
  }

  // Finally!
  $this->relationship = $this->view->relationship[$relationship]->alias;
}