You are here

public function EntityReverse::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/relationship/EntityReverse.php \Drupal\views\Plugin\views\relationship\EntityReverse::__construct()

Constructs an EntityReverse object.

Parameters

\Drupal\views\Plugin\ViewsHandlerManager $join_manager: The views plugin join manager.

Overrides HandlerBase::__construct

File

core/modules/views/src/Plugin/views/relationship/EntityReverse.php, line 29
Contains \Drupal\views\Plugin\views\relationship\EntityReverse.

Class

EntityReverse
A relationship handlers which reverse entity references.

Namespace

Drupal\views\Plugin\views\relationship

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, ViewsHandlerManager $join_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->joinManager = $join_manager;
}