protected FeedHtmlRouteProvider::getEditFormRoute(EntityTypeInterface $entity_type)
Gets the edit-form route.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type.
Return value
\Symfony\Component\Routing\Route|null The generated route, if available.
Overrides AdminHtmlRouteProvider::getEditFormRoute
File
- core/modules/aggregator/src/FeedHtmlRouteProvider.php, line 26
Class
- FeedHtmlRouteProvider
- Provides HTML routes for the feed entity type.
Namespace
Drupal\aggregator
Code
1 2 3 4 5 6 7 | protected function getEditFormRoute(EntityTypeInterface $entity_type ) { $route = parent::getEditFormRoute( $entity_type ); $route ->setDefault( '_title' , 'Configure' ); return $route ; } |
Please login to continue.