StatusTypeHtmlRouteProvider.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. namespace Drupal\statusmessage;
  3. use Drupal\Core\Entity\EntityTypeInterface;
  4. use Drupal\Core\Entity\Routing\AdminHtmlRouteProvider;
  5. use Symfony\Component\Routing\Route;
  6. /**
  7. * Provides routes for Status type entities.
  8. *
  9. * @see Drupal\Core\Entity\Routing\AdminHtmlRouteProvider
  10. * @see Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider
  11. */
  12. class StatusTypeHtmlRouteProvider 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. if ($add_form_route = $this->getAddFormRoute($entity_type)) {
  23. $collection->add("entity.{$entity_type_id}.add_form", $add_form_route);
  24. }
  25. return $collection;
  26. }
  27. /**
  28. * Gets the collection route.
  29. *
  30. * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  31. * The entity type.
  32. *
  33. * @return \Symfony\Component\Routing\Route|null
  34. * The generated route, if available.
  35. */
  36. protected function getCollectionRoute(EntityTypeInterface $entity_type) {
  37. if ($entity_type->hasLinkTemplate('collection') && $entity_type->hasListBuilderClass()) {
  38. $entity_type_id = $entity_type->id();
  39. $route = new Route($entity_type->getLinkTemplate('collection'));
  40. $route
  41. ->setDefaults([
  42. '_entity_list' => $entity_type_id,
  43. // Make sure this is not a TranslatableMarkup object as the
  44. // TitleResolver translates this string again.
  45. '_title' => (string) $entity_type->getLabel(),
  46. ])
  47. ->setRequirement('_permission', $entity_type->getAdminPermission())
  48. ->setOption('_admin_route', TRUE);
  49. return $route;
  50. }
  51. }
  52. /**
  53. * Gets the add-form route.
  54. *
  55. * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  56. * The entity type.
  57. *
  58. * @return \Symfony\Component\Routing\Route|null
  59. * The generated route, if available.
  60. */
  61. protected function getAddFormRoute(EntityTypeInterface $entity_type) {
  62. if ($entity_type->hasLinkTemplate('add-form')) {
  63. $entity_type_id = $entity_type->id();
  64. $route = new Route($entity_type->getLinkTemplate('add-form'));
  65. // Use the add form handler, if available, otherwise default.
  66. $operation = 'default';
  67. if ($entity_type->getFormClass('add')) {
  68. $operation = 'add';
  69. }
  70. $route
  71. ->setDefaults([
  72. '_entity_form' => "{$entity_type_id}.{$operation}",
  73. '_title' => "Add {$entity_type->getLabel()}",
  74. ])
  75. ->setRequirement('_entity_create_access', $entity_type_id)
  76. ->setOption('parameters', [
  77. $entity_type_id => ['type' => 'entity:' . $entity_type_id],
  78. ])
  79. ->setOption('_admin_route', TRUE);
  80. return $route;
  81. }
  82. }
  83. }