class WebformSubmissionLogRouteSubscriber in Webform 8.5
Same name and namespace in other branches
- 6.x modules/webform_submission_log/src/Routing/WebformSubmissionLogRouteSubscriber.php \Drupal\webform_submission_log\Routing\WebformSubmissionLogRouteSubscriber
Remove webform node log routes.
Hierarchy
- class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- class \Drupal\webform_submission_log\Routing\WebformSubmissionLogRouteSubscriber
Expanded class hierarchy of WebformSubmissionLogRouteSubscriber
1 string reference to 'WebformSubmissionLogRouteSubscriber'
- webform_submission_log.services.yml in modules/
webform_submission_log/ webform_submission_log.services.yml - modules/webform_submission_log/webform_submission_log.services.yml
1 service uses WebformSubmissionLogRouteSubscriber
File
- modules/
webform_submission_log/ src/ Routing/ WebformSubmissionLogRouteSubscriber.php, line 12
Namespace
Drupal\webform_submission_log\RoutingView source
class WebformSubmissionLogRouteSubscriber extends RouteSubscriberBase {
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* Constructs a WebformSubmissionLogRouteSubscriber object.
*
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler.
*/
public function __construct(ModuleHandlerInterface $module_handler) {
$this->moduleHandler = $module_handler;
}
/**
* {@inheritdoc}
*/
protected function alterRoutes(RouteCollection $collection) {
if (!$this->moduleHandler
->moduleExists('webform_node')) {
$collection
->remove('entity.node.webform.results_log');
$collection
->remove('entity.node.webform_submission.log');
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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 |
WebformSubmissionLogRouteSubscriber:: |
protected | property | The module handler. | |
WebformSubmissionLogRouteSubscriber:: |
protected | function |
Alters existing routes for a specific collection. Overrides RouteSubscriberBase:: |
|
WebformSubmissionLogRouteSubscriber:: |
public | function | Constructs a WebformSubmissionLogRouteSubscriber object. |