You are here

class RouteSubscriber in Opigno Learning path 8

Same name and namespace in other branches
  1. 3.x src/Routing/RouteSubscriber.php \Drupal\opigno_learning_path\Routing\RouteSubscriber

Listens to the dynamic route events.

Hierarchy

  • class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of RouteSubscriber

1 string reference to 'RouteSubscriber'
opigno_learning_path.services.yml in ./opigno_learning_path.services.yml
opigno_learning_path.services.yml
1 service uses RouteSubscriber
opigno_learning_path.route_subscriber in ./opigno_learning_path.services.yml
Drupal\opigno_learning_path\Routing\RouteSubscriber

File

src/Routing/RouteSubscriber.php, line 11

Namespace

Drupal\opigno_learning_path\Routing
View source
class RouteSubscriber extends RouteSubscriberBase {

  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) {

    // Alters '/group/{group}/members' route path from Group module
    // to use this path in custom controller.
    if ($route = $collection
      ->get('view.group_members.page_1')) {
      $route
        ->setPath('/group/{group}/members/default');
    }
    if ($route = $collection
      ->get('entity.group.join')) {
      $route
        ->setRequirement('_entity_access', 'group.join');
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RouteSubscriber::alterRoutes protected function Alters existing routes for a specific collection. Overrides RouteSubscriberBase::alterRoutes
RouteSubscriberBase::getSubscribedEvents public static function Returns an array of event names this subscriber wants to listen to. 5
RouteSubscriberBase::onAlterRoutes public function Delegates the route altering to self::alterRoutes(). 1