function views_handler_relationship::init

Let relationships live on tables other than the table they operate on.

Overrides views_handler::init

2 calls to views_handler_relationship::init()
views_handler_relationship_entity_reverse::init in modules/field/views_handler_relationship_entity_reverse.inc
Let relationships live on tables other than the table they operate on.
views_handler_relationship_node_term_data::init in modules/taxonomy/views_handler_relationship_node_term_data.inc
Let relationships live on tables other than the table they operate on.
2 methods override views_handler_relationship::init()
views_handler_relationship_entity_reverse::init in modules/field/views_handler_relationship_entity_reverse.inc
Let relationships live on tables other than the table they operate on.
views_handler_relationship_node_term_data::init in modules/taxonomy/views_handler_relationship_node_term_data.inc
Let relationships live on tables other than the table they operate on.

File

handlers/views_handler_relationship.inc, line 42

Class

views_handler_relationship
Relationship handler, allows a new version of the primary table to be linked.

Code

public function init(&$view, &$options) {
    parent::init($view, $options);
    if (isset($this->definition['relationship table'])) {
        $this->table = $this->definition['relationship table'];
    }
    if (isset($this->definition['relationship field'])) {
        // Set both real_field and field so custom handler can rely on the old
        // field value.
        $this->real_field = $this->field = $this->definition['relationship field'];
    }
}