function EntityManager::getHandler
Returns a handler instance for the given entity type and handler.
Entity handlers are instantiated once per entity type and then cached in the entity type manager, and so subsequent calls to getHandler() for a particular entity type and handler type will return the same object. This means that properties on a handler may be used as a static cache, although as the handler is common to all entities of the same type, any data that is per-entity should be keyed by the entity ID.
Parameters
string $entity_type_id: The entity type ID for this handler.
string $handler_type: The handler type to create an instance for.
Return value
object A handler instance.
Overrides EntityTypeManagerInterface::getHandler
Deprecated
in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Entity\EntityTypeManagerInterface::getHandler() instead.
See also
https://www.drupal.org/node/2549139
File
-
core/
lib/ Drupal/ Core/ Entity/ EntityManager.php, line 161
Class
- EntityManager
- Provides a wrapper around many other services relating to entities.
Namespace
Drupal\Core\EntityCode
public function getHandler($entity_type_id, $handler_type) {
@trigger_error('EntityManagerInterface::getHandler() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use \\Drupal\\Core\\Entity\\EntityTypeManager::getHandler() instead. See https://www.drupal.org/node/2549139', E_USER_DEPRECATED);
return $this->container
->get('entity_type.manager')
->getHandler($entity_type_id, $handler_type);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.