public function MenuLinkBase::isTranslatable in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Menu/MenuLinkBase.php \Drupal\Core\Menu\MenuLinkBase::isTranslatable()
Returns whether this link can be translated.
Return value
bool TRUE if the link can be translated, FALSE otherwise.
Overrides MenuLinkInterface::isTranslatable
1 method overrides MenuLinkBase::isTranslatable()
- MenuLinkContent::isTranslatable in core/
modules/ menu_link_content/ src/ Plugin/ Menu/ MenuLinkContent.php - Returns whether this link can be translated.
File
- core/
lib/ Drupal/ Core/ Menu/ MenuLinkBase.php, line 80
Class
- MenuLinkBase
- Defines a base menu link class.
Namespace
Drupal\Core\MenuCode
public function isTranslatable() {
return (bool) $this
->getTranslateRoute();
}