You are here

public function ImportEntityHtmlRouteProvider::getRoutes in Content Synchronizer 8.2

Same name and namespace in other branches
  1. 8 src/ImportEntityHtmlRouteProvider.php \Drupal\content_synchronizer\ImportEntityHtmlRouteProvider::getRoutes()
  2. 3.x src/ImportEntityHtmlRouteProvider.php \Drupal\content_synchronizer\ImportEntityHtmlRouteProvider::getRoutes()

Provides routes for entities.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type

Return value

\Symfony\Component\Routing\RouteCollection|\Symfony\Component\Routing\Route[] Returns a route collection or an array of routes keyed by name, like route_callbacks inside 'routing.yml' files.

Overrides DefaultHtmlRouteProvider::getRoutes

File

src/ImportEntityHtmlRouteProvider.php, line 20

Class

ImportEntityHtmlRouteProvider
Provides routes for Import entities.

Namespace

Drupal\content_synchronizer

Code

public function getRoutes(EntityTypeInterface $entity_type) {
  $collection = parent::getRoutes($entity_type);
  $entity_type_id = $entity_type
    ->id();
  if ($collection_route = $this
    ->getCollectionRoute($entity_type)) {
    $collection
      ->add("entity.{$entity_type_id}.collection", $collection_route);
  }
  if ($settings_form_route = $this
    ->getSettingsFormRoute($entity_type)) {
    $collection
      ->add("{$entity_type_id}.settings", $settings_form_route);
  }
  return $collection;
}