You are here

class RouteSubscriber in Opigno forum 8

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

Listens to the dynamic route events.

Hierarchy

Expanded class hierarchy of RouteSubscriber

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

File

src/Routing/RouteSubscriber.php, line 11

Namespace

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

  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) {
    if (($route = $collection
      ->get('forum.page')) !== NULL) {
      $route
        ->setRequirement('_forum_access_check', '_forum_access_check');
    }
  }

}

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