You are here

public function BlockContent::getRevisionCreationTime in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::getRevisionCreationTime()

Implements \Drupal\Core\Entity\RevisionLogInterface::getRevisionCreationTime().

Overrides RevisionLogEntityTrait::getRevisionCreationTime

File

core/modules/block_content/src/Entity/BlockContent.php, line 236

Class

BlockContent
Defines the custom block entity class.

Namespace

Drupal\block_content\Entity

Code

public function getRevisionCreationTime() {
  return $this
    ->get('revision_created')->value;
}