class RouteSubscriber in Custom Permissions 8
Same name and namespace in other branches
- 8.2 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();
foreach ($custom_perms as $custom_perm) {
if ($custom_perm
->getStatus()) {
$paths = $this
->configPermsParsePath($custom_perm
->getPath());
foreach ($paths as $path) {
$path = $path[0] == '/' ? $path : '/' . $path;
$url_object = \Drupal::service('path.validator')
->getUrlIfValidWithoutAccessCheck($path);
if ($url_object) {
$route_name = $url_object
->getRouteName();
if ($route = $collection
->get($route_name)) {
$route
->setRequirement('_permission', $custom_perm
->label());
}
}
}
}
}
}
/**
* Custom permission paths to array of paths.
*
* @param string $path
* Path(s) given by the user.
*
* @return array|string
* Implode paths in array of strings.
*/
public function configPermsParsePath($path) {
if (is_array($path)) {
$string = implode("\n", $path);
return $string;
}
else {
$path = str_replace([
"\r\n",
"\n\r",
"\n",
"\r",
], "\n", $path);
$parts = explode("\n", $path);
return $parts;
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteSubscriber:: |
protected | function |
Alters existing routes for a specific collection. Overrides RouteSubscriberBase:: |
|
RouteSubscriber:: |
public | function | Custom permission paths to array of paths. | |
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 |