public EntityTypeManagerInterface::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.
File
- core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php, line 93
Class
- EntityTypeManagerInterface
- Provides an interface for entity type managers.
Namespace
Drupal\Core\Entity
Code
public function hasHandler($entity_type, $handler_type);
Please login to continue.