Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getOriginalClass()
  2. 9 core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getOriginalClass()

Gets the name of the original entity type class.

In case the class name was changed with setClass(), this will return the initial value. Useful when trying to identify the entity type ID based on the class.

Return value

string The name of the original entity type class.

Overrides EntityTypeInterface::getOriginalClass

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

public function getOriginalClass() {
  return $this->originalClass ?: $this->class;
}