You are here

public function EntityType::getClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getClass()

Gets the class.

Return value

string A fully qualified class name.

Overrides PluginDefinitionInterface::getClass

1 call to EntityType::getClass()
EntityType::isSubclassOf in core/lib/Drupal/Core/Entity/EntityType.php
Indicates if the entity type is a subclass of the given class or interface.

File

core/lib/Drupal/Core/Entity/EntityType.php, line 383
Contains \Drupal\Core\Entity\EntityType.

Class

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

Namespace

Drupal\Core\Entity

Code

public function getClass() {
  return $this->class;
}