You are here

PromotionRouteProvider.php in Commerce Core 8.2

File

modules/promotion/src/PromotionRouteProvider.php
View source
<?php

namespace Drupal\commerce_promotion;

use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\entity\Routing\AdminHtmlRouteProvider;
use Symfony\Component\Routing\Route;

/**
 * Provides routes for the Promotion entity.
 */
class PromotionRouteProvider extends AdminHtmlRouteProvider {

  /**
   * {@inheritdoc}
   */
  public function getRoutes(EntityTypeInterface $entity_type) {
    $collection = parent::getRoutes($entity_type);
    foreach ([
      'enable',
      'disable',
    ] as $operation) {
      if ($form_route = $this
        ->getPromotionFormRoute($entity_type, $operation)) {
        $collection
          ->add('entity.commerce_promotion.' . $operation . '_form', $form_route);
      }
    }
    return $collection;
  }

  /**
   * Gets a promotion form route.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type.
   * @param string $operation
   *   The 'operation' (e.g 'disable', 'enable').
   *
   * @return \Symfony\Component\Routing\Route|null
   *   The generated route, if available.
   */
  protected function getPromotionFormRoute(EntityTypeInterface $entity_type, $operation) {
    if ($entity_type
      ->hasLinkTemplate($operation . '-form')) {
      $route = new Route($entity_type
        ->getLinkTemplate($operation . '-form'));
      $route
        ->addDefaults([
        '_entity_form' => "commerce_promotion.{$operation}",
        '_title_callback' => '\\Drupal\\Core\\Entity\\Controller\\EntityController::title',
      ])
        ->setRequirement('_entity_access', 'commerce_promotion.update')
        ->setOption('parameters', [
        'commerce_promotion' => [
          'type' => 'entity:commerce_promotion',
        ],
      ])
        ->setRequirement('commerce_promotion', '\\d+')
        ->setOption('_admin_route', TRUE);
      return $route;
    }
  }

}

Classes

Namesort descending Description
PromotionRouteProvider Provides routes for the Promotion entity.