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;
class PromotionRouteProvider extends AdminHtmlRouteProvider {
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;
}
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;
}
}
}