You are here

protected function RouteSubscriber::alterRoutes in Opigno module 3.x

Same name and namespace in other branches
  1. 8 src/Routing/RouteSubscriber.php \Drupal\opigno_module\Routing\RouteSubscriber::alterRoutes()

Alters existing routes for a specific collection.

Parameters

\Symfony\Component\Routing\RouteCollection $collection: The route collection for adding routes.

Overrides RouteSubscriberBase::alterRoutes

File

src/Routing/RouteSubscriber.php, line 16

Class

RouteSubscriber
Listens to the dynamic route events.

Namespace

Drupal\opigno_module\Routing

Code

protected function alterRoutes(RouteCollection $collection) {
  if ($route = $collection
    ->get('entity.opigno_module.collection')) {
    $route
      ->setPath('/admin/structure/opigno-modules');
  }
  if ($route = $collection
    ->get('entity.opigno_activity.collection')) {
    $route
      ->setPath('/admin/structure/opigno-activities');
  }
  if ($route = $collection
    ->get('entity.group.collection')) {
    $route
      ->setPath('/admin/structure/groups');
  }

  // Rewrite access to Drupal\entity_browser\Entity\EntityBrowser::route()
  // to allow group content manager add an image to a module.
  if ($route = $collection
    ->get('entity_browser.media_entity_browser_groups')) {
    $route
      ->setRequirements([
      '_custom_access' => '\\Drupal\\opigno_module\\Controller\\OpignoModuleController::accessEntityBrowserGroups',
    ]);
  }

  // H5P libraries list.
  if ($route = $collection
    ->get('h5peditor.content_type_cache')) {
    $route
      ->setDefaults([
      '_controller' => '\\Drupal\\opigno_module\\Controller\\OpignoH5PEditorAJAXController::contentTypeCacheCallback',
    ]);
  }
}