You are here

public function FlagListItemHtmlRouteProvider::getRoutes in Flag Lists 4.0.x

Same name and namespace in other branches
  1. 8 src/FlagListItemHtmlRouteProvider.php \Drupal\flag_lists\FlagListItemHtmlRouteProvider::getRoutes()

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 DefaultHtmlRouteProvider::getRoutes

File

src/FlagListItemHtmlRouteProvider.php, line 19

Class

FlagListItemHtmlRouteProvider
Provides routes for Flagging collection entities.

Namespace

Drupal\flag_lists

Code

public function getRoutes(EntityTypeInterface $entity_type) {
  $collection = parent::getRoutes($entity_type);
  $collection
    ->get('entity.flag_list_item.edit_form')
    ->setRequirement('_permission', 'administer flag lists');
  $collection
    ->get('entity.flag_list_item.delete_form')
    ->setRequirement('_permission', 'administer flag lists');
  return $collection;
}