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

Gets an array of handlers.

Return value

array An associative array where the keys are the names of different handler types (listed below) and the values are the names of the classes that implement that handler:

Overrides EntityTypeInterface::getHandlerClasses

2 calls to EntityType::getHandlerClasses()
EntityType::getHandlerClass in core/lib/Drupal/Core/Entity/EntityType.php
EntityType::hasHandlerClass in core/lib/Drupal/Core/Entity/EntityType.php
Determines if there is a handler for a given type.

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

public function getHandlerClasses() {
  return $this->handlers;
}