You are here

class RouteSubscriber in File Entity (fieldable files) 8.2

Listens to the dynamic route events.

Hierarchy

Expanded class hierarchy of RouteSubscriber

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

File

src/Routing/RouteSubscriber.php, line 11

Namespace

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

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

    // The usage view should be shown in the admin theme.
    if ($route = $collection
      ->get('view.file_entity_files.usage')) {
      $route
        ->setOption('_admin_route', TRUE);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RouteSubscriber::alterRoutes public 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