You are here

public function ConfigurableLanguage::getName in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/language/src/Entity/ConfigurableLanguage.php \Drupal\language\Entity\ConfigurableLanguage::getName()

Gets the name of the language.

Return value

string The human-readable name of the language (in the language that was used to construct this object).

Overrides LanguageInterface::getName

File

core/modules/language/src/Entity/ConfigurableLanguage.php, line 220

Class

ConfigurableLanguage
Defines the ConfigurableLanguage entity.

Namespace

Drupal\language\Entity

Code

public function getName() {
  return $this
    ->label();
}