You are here

RouteSubscriber.php in Lightning Media 8.4

File

src/Routing/RouteSubscriber.php
View source
<?php

namespace Drupal\lightning_media\Routing;

use Drupal\Core\Routing\RouteSubscriberBase;
use Drupal\lightning_media\Form\EntityEmbedDialog;
use Symfony\Component\Routing\RouteCollection;

/**
 * Alters route definitions.
 */
class RouteSubscriber extends RouteSubscriberBase {

  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) {
    $route = $collection
      ->get('entity_embed.dialog');
    if ($route) {
      $route
        ->setDefault('_form', EntityEmbedDialog::class);
    }
  }

}

Classes

Namesort descending Description
RouteSubscriber Alters route definitions.