class RouteSubscriber in Custom Permissions 8.2
Same name and namespace in other branches
- 8 src/Routing/RouteSubscriber.php \Drupal\config_perms\Routing\RouteSubscriber
Class RouteSubscriber.
@package Drupal\config_perms\Routing Listens to the dynamic route events.
Hierarchy
- class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- class \Drupal\config_perms\Routing\RouteSubscriber
Expanded class hierarchy of RouteSubscriber
1 string reference to 'RouteSubscriber'
1 service uses RouteSubscriber
File
- src/
Routing/ RouteSubscriber.php, line 15
Namespace
Drupal\config_perms\RoutingView source
class RouteSubscriber extends RouteSubscriberBase {
/**
* {@inheritdoc}
*/
protected function alterRoutes(RouteCollection $collection) {
$custom_perms = CustomPermsEntity::loadMultiple();
/** @var \Drupal\config_perms\Entity\CustomPermsEntity $custom_perm */
foreach ($custom_perms as $custom_perm) {
if ($custom_perm
->getStatus()) {
$routes = config_perms_parse_path($custom_perm
->getRoute());
foreach ($routes as $route) {
if ($route = $collection
->get($route)) {
// This overrides the route requirements removing all the other
// access checkers and leaving only our access checker.
$route
->setRequirements([
'_config_perms_access_check' => 'TRUE',
]);
}
}
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteSubscriber:: |
protected | 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 |