entity_hierarchy-8.x-2.24/src/Plugin/views/argument/HierarchyIsSiblingOfEntityRevision.php
src/Plugin/views/argument/HierarchyIsSiblingOfEntityRevision.php
<?php namespace Drupal\entity_hierarchy\Plugin\views\argument; /** * Argument to limit to parent of a revision. * * @ingroup views_argument_handlers * * @ViewsArgument("entity_hierarchy_argument_is_sibling_of_entity_revision") */ class HierarchyIsSiblingOfEntityRevision extends HierarchyIsSiblingOfEntity { /** * {@inheritdoc} */ protected function loadEntity() { /** @var \Drupal\Core\Entity\RevisionableStorageInterface $storage */ $storage = $this->entityTypeManager->getStorage($this->getEntityType()); return $storage->loadRevision($this->argument) ?: $storage->load($this->argument); } }