Same filename in this branch
  1. 10 core/modules/config_translation/src/Routing/RouteSubscriber.php
  2. 10 core/modules/field_ui/src/Routing/RouteSubscriber.php
  3. 10 core/modules/media_library/src/Routing/RouteSubscriber.php
  4. 10 core/modules/node/src/Routing/RouteSubscriber.php
  5. 10 core/modules/views/src/EventSubscriber/RouteSubscriber.php
  6. 10 core/modules/media/tests/modules/media_test_embed/src/Routing/RouteSubscriber.php
  7. 10 core/modules/block_content/src/Routing/RouteSubscriber.php
Same filename and directory in other branches
  1. 8.9.x core/modules/node/src/Routing/RouteSubscriber.php
  2. 9 core/modules/node/src/Routing/RouteSubscriber.php

Namespace

Drupal\node\Routing

File

core/modules/node/src/Routing/RouteSubscriber.php
View source
<?php

namespace Drupal\node\Routing;

use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;

/**
 * Listens to the dynamic route events.
 */
class RouteSubscriber extends RouteSubscriberBase {

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

    // As nodes are the primary type of content, the node listing should be
    // easily available. In order to do that, override admin/content to show
    // a node listing instead of the path's child links.
    $route = $collection
      ->get('system.admin_content');
    if ($route) {
      $route
        ->setDefaults([
        '_title' => 'Content',
        '_entity_list' => 'node',
      ]);
      $route
        ->setRequirements([
        '_permission' => 'access content overview',
      ]);
    }
  }

}

Classes

Namesort descending Description
RouteSubscriber Listens to the dynamic route events.