You are here

public function TranslatableInterface::getTranslationLanguages in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/TypedData/TranslatableInterface.php \Drupal\Core\TypedData\TranslatableInterface::getTranslationLanguages()
  2. 10 core/lib/Drupal/Core/TypedData/TranslatableInterface.php \Drupal\Core\TypedData\TranslatableInterface::getTranslationLanguages()

Returns the languages the data is translated to.

Parameters

bool $include_default: (optional) Whether the default language should be included. Defaults to TRUE.

Return value

\Drupal\Core\Language\LanguageInterface[] An associative array of language objects, keyed by language codes.

1 method overrides TranslatableInterface::getTranslationLanguages()
ContentEntityBase::getTranslationLanguages in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Returns the languages the data is translated to.

File

core/lib/Drupal/Core/TypedData/TranslatableInterface.php, line 59

Class

TranslatableInterface
Interface for translatable data.

Namespace

Drupal\Core\TypedData

Code

public function getTranslationLanguages($include_default = TRUE);