You are here

public function OrderRouteProvider::getRoutes in Commerce Core 8.2

Provides routes for entities.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type

Return value

\Symfony\Component\Routing\RouteCollection|\Symfony\Component\Routing\Route[] Returns a route collection or an array of routes keyed by name, like route_callbacks inside 'routing.yml' files.

Overrides AdminHtmlRouteProvider::getRoutes

File

modules/order/src/OrderRouteProvider.php, line 30

Class

OrderRouteProvider
Provides routes for the Order entity.

Namespace

Drupal\commerce_order

Code

public function getRoutes(EntityTypeInterface $entity_type) {
  $collection = parent::getRoutes($entity_type);
  if ($resend_receipt_form_route = $this
    ->getResendReceiptFormRoute($entity_type)) {
    $collection
      ->add("entity.commerce_order.resend_receipt_form", $resend_receipt_form_route);
  }
  $collection
    ->addRequirements([
    '_permission' => 'access commerce administration pages',
  ]);
  return $collection;
}