You are here

public function RealEstateHtmlRouteProvider::getRoutes in Styled Google Map 8.2

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

modules/demo/src/RealEstateHtmlRouteProvider.php, line 20

Class

RealEstateHtmlRouteProvider
Provides routes for Real estate entities.

Namespace

Drupal\styled_google_map_demo

Code

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