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

Parameters

string $handler_type: The handler type to get.

string|false $nested: (optional) The nested handler definition key, or FALSE if the handler does not have a nested definition. Defaults to FALSE.

Return value

array|string|null The handlers for a given type, or NULL if none exist.

Overrides EntityTypeInterface::getHandlerClass

5 calls to EntityType::getHandlerClass()
EntityType::getAccessControlClass in core/lib/Drupal/Core/Entity/EntityType.php
Gets the access control class.
EntityType::getFormClass in core/lib/Drupal/Core/Entity/EntityType.php
Gets the form class for a specific operation.
EntityType::getListBuilderClass in core/lib/Drupal/Core/Entity/EntityType.php
Gets the list class.
EntityType::getStorageClass in core/lib/Drupal/Core/Entity/EntityType.php
Gets the storage class.
EntityType::getViewBuilderClass in core/lib/Drupal/Core/Entity/EntityType.php
Gets the view builder class.

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

public function getHandlerClass($handler_type, $nested = FALSE) {
  if ($this
    ->hasHandlerClass($handler_type, $nested)) {
    $handlers = $this
      ->getHandlerClasses();
    return $nested ? $handlers[$handler_type][$nested] : $handlers[$handler_type];
  }
  return NULL;
}