class WebformOptionsLimitRouteSubscriber in Webform 8.5
Same name and namespace in other branches
- 6.x modules/webform_options_limit/src/Routing/WebformOptionsLimitRouteSubscriber.php \Drupal\webform_options_limit\Routing\WebformOptionsLimitRouteSubscriber
Remove webform options limit routes.
Hierarchy
- class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- class \Drupal\webform_options_limit\Routing\WebformOptionsLimitRouteSubscriber
Expanded class hierarchy of WebformOptionsLimitRouteSubscriber
1 string reference to 'WebformOptionsLimitRouteSubscriber'
- webform_options_limit.services.yml in modules/
webform_options_limit/ webform_options_limit.services.yml - modules/webform_options_limit/webform_options_limit.services.yml
1 service uses WebformOptionsLimitRouteSubscriber
File
- modules/
webform_options_limit/ src/ Routing/ WebformOptionsLimitRouteSubscriber.php, line 12
Namespace
Drupal\webform_options_limit\RoutingView source
class WebformOptionsLimitRouteSubscriber 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_options_limit.summary');
}
}
}
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 |
WebformOptionsLimitRouteSubscriber:: |
protected | property | The module handler. | |
WebformOptionsLimitRouteSubscriber:: |
protected | function |
Alters existing routes for a specific collection. Overrides RouteSubscriberBase:: |
|
WebformOptionsLimitRouteSubscriber:: |
public | function | Constructs a WebformSubmissionLogRouteSubscriber object. |