HeartbeatTypeHtmlRouteProvider.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace Drupal\heartbeat8;
  3. use Drupal\Core\Entity\EntityTypeInterface;
  4. use Drupal\Core\Entity\Routing\AdminHtmlRouteProvider;
  5. use Symfony\Component\Routing\Route;
  6. /**
  7. * Provides routes for Heartbeat type entities.
  8. *
  9. * @see Drupal\Core\Entity\Routing\AdminHtmlRouteProvider
  10. * @see Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider
  11. */
  12. class HeartbeatTypeHtmlRouteProvider extends AdminHtmlRouteProvider {
  13. /**
  14. * {@inheritdoc}
  15. */
  16. public function getRoutes(EntityTypeInterface $entity_type) {
  17. $collection = parent::getRoutes($entity_type);
  18. $entity_type_id = $entity_type->id();
  19. if ($collection_route = $this->getCollectionRoute($entity_type)) {
  20. $collection->add("entity.{$entity_type_id}.collection", $collection_route);
  21. }
  22. return $collection;
  23. }
  24. /**
  25. * Gets the collection route.
  26. *
  27. * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  28. * The entity type.
  29. *
  30. * @return \Symfony\Component\Routing\Route|null
  31. * The generated route, if available.
  32. */
  33. protected function getCollectionRoute(EntityTypeInterface $entity_type) {
  34. if ($entity_type->hasLinkTemplate('collection') && $entity_type->hasListBuilderClass()) {
  35. $entity_type_id = $entity_type->id();
  36. $route = new Route($entity_type->getLinkTemplate('collection'));
  37. $route
  38. ->setDefaults([
  39. '_entity_list' => $entity_type_id,
  40. // Make sure this is not a TranslatableMarkup object as the
  41. // TitleResolver translates this string again.
  42. '_title' => (string) $entity_type->getLabel(),
  43. ])
  44. ->setRequirement('_permission', $entity_type->getAdminPermission())
  45. ->setOption('_admin_route', TRUE);
  46. return $route;
  47. }
  48. }
  49. }