public function InvoiceRouteProvider::getRoutes in Commerce Invoice 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/
InvoiceRouteProvider.php, line 17
Class
- InvoiceRouteProvider
- Provides routes for the Invoice entity.
Namespace
Drupal\commerce_invoiceCode
public function getRoutes(EntityTypeInterface $entity_type) {
$collection = parent::getRoutes($entity_type);
$entity_type_id = $entity_type
->id();
if ($download_route = $this
->getDownloadRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.download", $download_route);
}
if ($invoice_payment_route = $this
->getInvoicePaymentFormRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.payment_form", $invoice_payment_route);
}
return $collection;
}