FeedHtmlRouteProvider::getEditFormRoute

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

protected function getEditFormRoute(EntityTypeInterface $entity_type) {
  $route = parent::getEditFormRoute($entity_type);

  $route->setDefault('_title', 'Configure');

  return $route;
}
doc_Drupal
2016-10-29 09:10:07
Comments
Leave a Comment

Please login to continue.