function 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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.