You are here

class RouteSubscriber in Password Separate Form 8

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'
change_pwd_page.services.yml in ./change_pwd_page.services.yml
change_pwd_page.services.yml
1 service uses RouteSubscriber
change_pwd_page.route_subscriber in ./change_pwd_page.services.yml
Drupal\change_pwd_page\Routing\RouteSubscriber

File

src/Routing/RouteSubscriber.php, line 11

Namespace

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

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

    // As Change Password page is separate form now so in order to do that,
    // override user.reset route with change_pwd_page.reset route to show the
    // Change Password form instead of default.
    if ($route = $collection
      ->get('user.reset')) {
      $route
        ->setPath('/user/reset/{uid}/{timestamp}/{hash}/new');
    }
  }

}

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