You are here

class WebformCardsRouteSubscriber in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_cards/src/Routing/WebformCardsRouteSubscriber.php \Drupal\webform_cards\Routing\WebformCardsRouteSubscriber

Remove webform cards routes.

Hierarchy

Expanded class hierarchy of WebformCardsRouteSubscriber

1 string reference to 'WebformCardsRouteSubscriber'
webform_cards.services.yml in modules/webform_cards/webform_cards.services.yml
modules/webform_cards/webform_cards.services.yml
1 service uses WebformCardsRouteSubscriber
webform_cards.route_subscriber in modules/webform_cards/webform_cards.services.yml
Drupal\webform_cards\Routing\WebformCardsRouteSubscriber

File

modules/webform_cards/src/Routing/WebformCardsRouteSubscriber.php, line 12

Namespace

Drupal\webform_cards\Routing
View source
class WebformCardsRouteSubscriber extends RouteSubscriberBase {

  /**
   * The module handler.
   *
   * @var \Drupal\Core\Extension\ModuleHandlerInterface
   */
  protected $moduleHandler;

  /**
   * Constructs a WebformCardsRouteSubscriber 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_ui')) {
      $collection
        ->remove('entity.webform_ui.element.add_card');
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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
WebformCardsRouteSubscriber::$moduleHandler protected property The module handler.
WebformCardsRouteSubscriber::alterRoutes protected function Alters existing routes for a specific collection. Overrides RouteSubscriberBase::alterRoutes
WebformCardsRouteSubscriber::__construct public function Constructs a WebformCardsRouteSubscriber object.