function EntityType::isRevisionable

Indicates whether entities of this type have revision support.

Return value

bool

Overrides EntityTypeInterface::isRevisionable

1 call to EntityType::isRevisionable()
EntityType::showRevisionUi in core/lib/Drupal/Core/Entity/EntityType.php
Indicates whether the revision form fields should be added to the form.

File

core/lib/Drupal/Core/Entity/EntityType.php, line 743

Class

EntityType
Provides an implementation of an entity type and its metadata.

Namespace

Drupal\Core\Entity

Code

public function isRevisionable() {
  // Entity types are revisionable if a revision key has been specified.
  return $this->hasKey('revision');
}

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