function LatestRevision::__construct
Same name in other branches
- 9 core/modules/views/src/Plugin/views/filter/LatestRevision.php \Drupal\views\Plugin\views\filter\LatestRevision::__construct()
- 8.9.x core/modules/views/src/Plugin/views/filter/LatestRevision.php \Drupal\views\Plugin\views\filter\LatestRevision::__construct()
- 10 core/modules/views/src/Plugin/views/filter/LatestRevision.php \Drupal\views\Plugin\views\filter\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\filterCode
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.