You are here

class RouteSubscriber in User protect 8

Class RouteSubscriber.

@package Drupal\userprotect\Routing

Hierarchy

Expanded class hierarchy of RouteSubscriber

1 string reference to 'RouteSubscriber'
userprotect.services.yml in ./userprotect.services.yml
userprotect.services.yml
1 service uses RouteSubscriber
userprotect.route_subscriber in ./userprotect.services.yml
Drupal\userprotect\Routing\RouteSubscriber

File

src/Routing/RouteSubscriber.php, line 13

Namespace

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

  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) {
    if ($route = $collection
      ->get('role_delegation.edit_form')) {
      $route
        ->setRequirement('_userprotect_role_access_check', 'TRUE');
    }
  }

}

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