You are here

public function ModerationInformation::getDefaultRevisionId in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/content_moderation/src/ModerationInformation.php \Drupal\content_moderation\ModerationInformation::getDefaultRevisionId()
  2. 10 core/modules/content_moderation/src/ModerationInformation.php \Drupal\content_moderation\ModerationInformation::getDefaultRevisionId()

Returns the revision ID of the default revision for the specified entity.

Parameters

string $entity_type_id: The entity type ID.

int $entity_id: The entity ID.

Return value

int The revision ID of the default revision, or NULL if the entity was not found.

Overrides ModerationInformationInterface::getDefaultRevisionId

1 call to ModerationInformation::getDefaultRevisionId()
ModerationInformation::hasPendingRevision in core/modules/content_moderation/src/ModerationInformation.php
Determines if a pending revision exists for the specified entity.

File

core/modules/content_moderation/src/ModerationInformation.php, line 109

Class

ModerationInformation
General service for moderation-related questions about Entity API.

Namespace

Drupal\content_moderation

Code

public function getDefaultRevisionId($entity_type_id, $entity_id) {
  if ($storage = $this->entityTypeManager
    ->getStorage($entity_type_id)) {
    $result = $storage
      ->getQuery()
      ->currentRevision()
      ->condition($this->entityTypeManager
      ->getDefinition($entity_type_id)
      ->getKey('id'), $entity_id)
      ->accessCheck(FALSE)
      ->execute();
    if ($result) {
      return key($result);
    }
  }
}