You are here

public function MenuLinkContent::getTitle in Drupal 9

Same name in this branch
  1. 9 core/modules/menu_link_content/src/Entity/MenuLinkContent.php \Drupal\menu_link_content\Entity\MenuLinkContent::getTitle()
  2. 9 core/modules/menu_link_content/src/Plugin/Menu/MenuLinkContent.php \Drupal\menu_link_content\Plugin\Menu\MenuLinkContent::getTitle()
Same name and namespace in other branches
  1. 8 core/modules/menu_link_content/src/Entity/MenuLinkContent.php \Drupal\menu_link_content\Entity\MenuLinkContent::getTitle()

Gets the title of the menu link.

Return value

string The title of the link.

Overrides MenuLinkContentInterface::getTitle

1 call to MenuLinkContent::getTitle()
MenuLinkContent::getPluginDefinition in core/modules/menu_link_content/src/Entity/MenuLinkContent.php
Builds up the menu link plugin definition for this entity.

File

core/modules/menu_link_content/src/Entity/MenuLinkContent.php, line 86

Class

MenuLinkContent
Defines the menu link content entity class.

Namespace

Drupal\menu_link_content\Entity

Code

public function getTitle() {
  return $this
    ->get('title')->value;
}