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
public function hasTranslation($langcode) { if ($langcode == $this->defaultLangcode) { $langcode = LanguageInterface::LANGCODE_DEFAULT; } return !empty($this->translations[$langcode]['status']); }
Please login to continue.