public function EntityTypeManager::hasHandler

public EntityTypeManager::hasHandler($entity_type, $handler_type)

Checks whether a certain entity type has a certain handler.

Parameters

string $entity_type: The name of the entity type.

string $handler_type: The name of the handler.

Return value

bool Returns TRUE if the entity type has the handler, else FALSE.

Overrides EntityTypeManagerInterface::hasHandler

File

core/lib/Drupal/Core/Entity/EntityTypeManager.php, line 149

Class

EntityTypeManager
Manages entity type plugin definitions.

Namespace

Drupal\Core\Entity

Code

public function hasHandler($entity_type, $handler_type) {
  if ($definition = $this->getDefinition($entity_type, FALSE)) {
    return $definition->hasHandlerClass($handler_type);
  }

  return FALSE;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!EntityTypeManager.php/function/EntityTypeManager::hasHandler/8.1.x