function LatestRevision::__construct

Constructs a new LatestRevision.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: Entity Type Manager Service.

\Drupal\views\Plugin\ViewsHandlerManager $join_handler: Views Handler Plugin Manager.

Overrides HandlerBase::__construct

File

core/modules/views/src/Plugin/views/filter/LatestRevision.php, line 48

Class

LatestRevision
Filter to show only the latest revision of an entity.

Namespace

Drupal\views\Plugin\views\filter

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, ViewsHandlerManager $join_handler) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityTypeManager = $entity_type_manager;
  $this->joinHandler = $join_handler;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.