public function MenuLinkContent::getTranslateRoute in Drupal 8
Same name and namespace in other branches
- 9 core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php \Drupal\menu_link_content\Plugin\Menu\MenuLinkContent::getTranslateRoute()
- 10 core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php \Drupal\menu_link_content\Plugin\Menu\MenuLinkContent::getTranslateRoute()
Returns route information for a route to translate the menu link.
Return value
\Drupal\Core\Url|null A Url object, or NULL if there is no route (e.g. when the link is not translatable).
Overrides MenuLinkBase::getTranslateRoute
File
- core/
modules/ menu_link_content/ src/ Plugin/ Menu/ MenuLinkContent.php, line 212
Class
- MenuLinkContent
- Provides the menu link plugin for content menu links.
Namespace
Drupal\menu_link_content\Plugin\MenuCode
public function getTranslateRoute() {
return $this
->getEntity()
->toUrl('drupal:content-translation-overview');
}