protected function RouteSubscriber::alterRoutes in Opigno module 8
Same name and namespace in other branches
- 3.x 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\RoutingCode
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');
}
if ($route = $collection
->get('private_message.private_message_page')) {
$route
->setDefault('_title', 'Discussion threads');
}
// Rewrite permissions for 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(array(
'_controller' => '\\Drupal\\opigno_module\\Controller\\OpignoH5PEditorAJAXController::contentTypeCacheCallback',
));
}
}