Same name and namespace in other branches
  1. 8.9.x core/modules/shortcut/src/Entity/Shortcut.php \Drupal\shortcut\Entity\Shortcut::getTitle()
  2. 9 core/modules/shortcut/src/Entity/Shortcut.php \Drupal\shortcut\Entity\Shortcut::getTitle()

Returns the title of this shortcut.

Return value

string The title of this shortcut.

Overrides ShortcutInterface::getTitle

File

core/modules/shortcut/src/Entity/Shortcut.php, line 62

Class

Shortcut
Defines the shortcut entity class.

Namespace

Drupal\shortcut\Entity

Code

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