class RouteSubscriber in No Request New Password 8
Listens to the dynamic route events.
Hierarchy
- class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- class \Drupal\noreqnewpass\Routing\RouteSubscriber
Expanded class hierarchy of RouteSubscriber
1 string reference to 'RouteSubscriber'
1 service uses RouteSubscriber
File
- src/
Routing/ RouteSubscriber.php, line 12
Namespace
Drupal\noreqnewpass\RoutingView source
class RouteSubscriber extends RouteSubscriberBase {
/**
* {@inheritdoc}
*/
public function alterRoutes(RouteCollection $collection) {
// Always deny access to '/user/password', if noreqnewpass_disable is set to
// TRUE.
if ($route = $collection
->get('user.pass')) {
$this
->denyAccess($route);
}
if ($route = $collection
->get('user.pass.http')) {
$this
->denyAccess($route);
}
}
/**
* Deny access to the route if noreqnewpass_disable is set to TRUE.
*
* @param \Symfony\Component\Routing\Route $route
* The route to deny access to.
*/
private function denyAccess(Route $route) : void {
$noreqnewpass_disable = \Drupal::config('noreqnewpass.settings_form')
->get('noreqnewpass_disable');
if ($noreqnewpass_disable) {
$route
->setRequirement('_access', 'FALSE');
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteSubscriber:: |
public | function |
Alters existing routes for a specific collection. Overrides RouteSubscriberBase:: |
|
RouteSubscriber:: |
private | function | Deny access to the route if noreqnewpass_disable is set to TRUE. | |
RouteSubscriberBase:: |
public static | function | Returns an array of event names this subscriber wants to listen to. | 5 |
RouteSubscriberBase:: |
public | function | Delegates the route altering to self::alterRoutes(). | 1 |