function EntityType::getHandlerClass

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

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;
}

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