You are here

class RouteSubscriber in Commerce AutoSKU 8.2

Subscriber for commerce_autosku routes.

Hierarchy

  • class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of RouteSubscriber

1 string reference to 'RouteSubscriber'
commerce_autosku.services.yml in ./commerce_autosku.services.yml
commerce_autosku.services.yml
1 service uses RouteSubscriber
commerce_autosku.route_subscriber in ./commerce_autosku.services.yml
Drupal\commerce_autosku\Routing\RouteSubscriber

File

src/Routing/RouteSubscriber.php, line 20
Contains \Drupal\commerce_autosku\Routing\RouteSubscriber.

Namespace

Drupal\commerce_autosku\Routing
View source
class RouteSubscriber extends RouteSubscriberBase {

  /**
   * The entity type manager
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * Constructs a new RouteSubscriber object.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager) {
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) {
    $entity_type_id = 'commerce_product_variation_type';
    $entity_type = $this->entityTypeManager
      ->getDefinition($entity_type_id);
    if ($route = $this
      ->getEntityAutoSkuRoute($entity_type)) {
      $collection
        ->add("entity.{$entity_type_id}.auto_sku", $route);
    }
  }

  /**
   * Gets the Entity Auto Label route.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type.
   *
   * @return \Symfony\Component\Routing\Route|null
   *   The generated route, if available.
   */
  protected function getEntityAutoSkuRoute(EntityTypeInterface $entity_type) {
    if ($route_load = $entity_type
      ->getLinkTemplate('auto-sku')) {
      $entity_type_id = $entity_type
        ->id();
      $route = new Route($route_load);
      $route
        ->addDefaults([
        '_form' => '\\Drupal\\commerce_autosku\\Form\\CommerceAutoSkuForm',
        '_title' => 'Automatic SKU',
      ])
        ->addRequirements([
        '_permission' => 'administer ' . $entity_type_id . ' SKU',
      ])
        ->setOption('_admin_route', TRUE)
        ->setOption('parameters', [
        $entity_type_id => [
          'type' => 'entity:' . $entity_type_id,
        ],
      ]);
      return $route;
    }
  }

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {
    $events = parent::getSubscribedEvents();
    $events[RoutingEvents::ALTER] = array(
      'onAlterRoutes',
      -100,
    );
    return $events;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RouteSubscriber::$entityTypeManager protected property The entity type manager
RouteSubscriber::alterRoutes protected function Alters existing routes for a specific collection. Overrides RouteSubscriberBase::alterRoutes
RouteSubscriber::getEntityAutoSkuRoute protected function Gets the Entity Auto Label route.
RouteSubscriber::getSubscribedEvents public static function Returns an array of event names this subscriber wants to listen to. Overrides RouteSubscriberBase::getSubscribedEvents
RouteSubscriber::__construct public function Constructs a new RouteSubscriber object.
RouteSubscriberBase::onAlterRoutes public function Delegates the route altering to self::alterRoutes(). 1