public function EntityManagerWrapper::getRouteProviders in Devel 8.2
Same name and namespace in other branches
- 8.3 webprofiler/src/Entity/EntityManagerWrapper.php \Drupal\webprofiler\Entity\EntityManagerWrapper::getRouteProviders()
- 8 webprofiler/src/Entity/EntityManagerWrapper.php \Drupal\webprofiler\Entity\EntityManagerWrapper::getRouteProviders()
- 4.x webprofiler/src/Entity/EntityManagerWrapper.php \Drupal\webprofiler\Entity\EntityManagerWrapper::getRouteProviders()
Gets all route provider instances.
Parameters
string $entity_type_id: The entity type ID for the route providers.
Return value
\Drupal\Core\Entity\Routing\EntityRouteProviderInterface[]
Overrides EntityTypeManagerInterface::getRouteProviders
File
- webprofiler/
src/ Entity/ EntityManagerWrapper.php, line 183
Class
- EntityManagerWrapper
- Class EntityManagerWrapper
Namespace
Drupal\webprofiler\EntityCode
public function getRouteProviders($entity_type) {
return $this->entityManager
->getRouteProviders($entity_type);
}