You are here

public function RelationshipPluginBase::init in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/relationship/RelationshipPluginBase.php \Drupal\views\Plugin\views\relationship\RelationshipPluginBase::init()
  2. 9 core/modules/views/src/Plugin/views/relationship/RelationshipPluginBase.php \Drupal\views\Plugin\views\relationship\RelationshipPluginBase::init()

Overrides \Drupal\views\Plugin\views\HandlerBase::init().

Init handler to let relationships live on tables other than the table they operate on.

File

core/modules/views/src/Plugin/views/relationship/RelationshipPluginBase.php, line 64

Class

RelationshipPluginBase
Simple relationship handler that allows a new version of the primary table to be linked in.

Namespace

Drupal\views\Plugin\views\relationship

Code

public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
  parent::init($view, $display, $options);
  if (isset($this->definition['relationship table'])) {
    $this->table = $this->definition['relationship table'];
  }
  if (isset($this->definition['relationship field'])) {

    // Set both realField and field so custom handler can rely on the old
    // field value.
    $this->realField = $this->field = $this->definition['relationship field'];
  }
}