class RouteSubscriber in Super Login 8
Listens to the dynamic route events.
Hierarchy
- class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- class \Drupal\super_login\Routing\RouteSubscriber
Expanded class hierarchy of RouteSubscriber
1 string reference to 'RouteSubscriber'
1 service uses RouteSubscriber
File
- src/
Routing/ RouteSubscriber.php, line 11
Namespace
Drupal\super_login\RoutingView source
class RouteSubscriber extends RouteSubscriberBase {
/**
* {@inheritdoc}
*/
public function alterRoutes(RouteCollection $collection) {
// Remove the page title of the user login page.
if ($route = $collection
->get('user.login')) {
$config = \Drupal::config('super_login.settings');
/*
$route->setDefaults(array(
'_title' => '',
'_form' => '\Drupal\user\Form\UserLoginForm',
));
*
*/
}
// Remove the page title of the password reset page.
if ($route = $collection
->get('user.pass')) {
$config = \Drupal::config('super_login.settings');
/*
$route->setDefaults(array(
'_title' => '',
'_form' => '\Drupal\user\Form\UserPasswordForm',
));
*
*/
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteSubscriber:: |
public | function |
Alters existing routes for a specific collection. Overrides RouteSubscriberBase:: |
|
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 |