protected function FeedHtmlRouteProvider::getCanonicalRoute in Drupal 8
Same name and namespace in other branches
- 9 core/modules/aggregator/src/FeedHtmlRouteProvider.php \Drupal\aggregator\FeedHtmlRouteProvider::getCanonicalRoute()
Gets the canonical route.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type.
Return value
\Symfony\Component\Routing\Route|null The generated route, if available.
Overrides DefaultHtmlRouteProvider::getCanonicalRoute
File
- core/
modules/ aggregator/ src/ FeedHtmlRouteProvider.php, line 16
Class
- FeedHtmlRouteProvider
- Provides HTML routes for the feed entity type.
Namespace
Drupal\aggregatorCode
protected function getCanonicalRoute(EntityTypeInterface $entity_type) {
$route = parent::getCanonicalRoute($entity_type);
$route
->setDefault('_title_controller', '\\Drupal\\aggregator\\Controller\\AggregatorController::feedTitle');
return $route;
}