public ContentEntityBase::hasTranslation($langcode)
Returns TRUE there is a translation for the given language code.
Parameters
string $langcode: The language code identifying the translation.
Return value
bool TRUE if the translation exists, FALSE otherwise.
Overrides TranslatableInterface::hasTranslation
File
- core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 801
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 5 6 | public function hasTranslation( $langcode ) { if ( $langcode == $this ->defaultLangcode) { $langcode = LanguageInterface::LANGCODE_DEFAULT; } return ! empty ( $this ->translations[ $langcode ][ 'status' ]); } |
Please login to continue.