RouteSubscriber.php

Same filename in this branch
  1. 11.x core/modules/media/tests/modules/media_test_embed/src/Routing/RouteSubscriber.php
  2. 11.x core/modules/config_translation/src/Routing/RouteSubscriber.php
  3. 11.x core/modules/media_library/src/Routing/RouteSubscriber.php
  4. 11.x core/modules/node/src/Routing/RouteSubscriber.php
  5. 11.x core/modules/views/src/EventSubscriber/RouteSubscriber.php
  6. 11.x core/modules/field_ui/src/Routing/RouteSubscriber.php
  7. 11.x core/modules/block_content/src/Routing/RouteSubscriber.php
  8. 11.x core/modules/workspaces_ui/src/Routing/RouteSubscriber.php

Namespace

Drupal\user_route_alter_test\Routing

File

core/modules/serialization/tests/modules/user_route_alter_test/src/Routing/RouteSubscriber.php

View source
<?php

declare (strict_types=1);
namespace Drupal\user_route_alter_test\Routing;

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

/**
 * Alter the 'user.pass.http' route.
 */
class RouteSubscriber extends RouteSubscriberBase {
  
  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) : void {
    if ($route = $collection->get('user.pass.http')) {
      $route->setRequirements([]);
      $route->setRequirement('_access', 'FALSE');
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() : array {
    $events = parent::getSubscribedEvents();
    // Ensure this event is triggered before
    // \Drupal\serialization\EventSubscriber\UserRouteAlterSubscriber.
    $events[RoutingEvents::ALTER] = [
      'onAlterRoutes',
      1,
    ];
    return $events;
  }

}

Classes

Title Deprecated Summary
RouteSubscriber Alter the 'user.pass.http' route.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.