You are here

public function MenuLinkBase::isTranslatable in Drupal 9

Same name and namespace in other branches
  1. 8 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\Menu

Code

public function isTranslatable() {
  return (bool) $this
    ->getTranslateRoute();
}