You are here

public function ShipmentRouteProvider::getRoutes in Commerce Shipping 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

src/ShipmentRouteProvider.php, line 18

Class

ShipmentRouteProvider
Provides routes for the Shipment entity.

Namespace

Drupal\commerce_shipping

Code

public function getRoutes(EntityTypeInterface $entity_type) {
  $collection = parent::getRoutes($entity_type);
  if ($resend_confirmation_form_route = $this
    ->getResendConfirmationFormRoute($entity_type)) {
    $collection
      ->add("entity.commerce_shipment.resend_confirmation_form", $resend_confirmation_form_route);
  }
  return $collection;
}