You are here

public function ContentEntityBase::hasTranslation in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::hasTranslation()

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

2 calls to ContentEntityBase::hasTranslation()
ContentEntityBase::addTranslation in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Adds a new translation to the translatable object.
ContentEntityBase::setNewRevision in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Enforces an entity to be saved as a new revision.

File

core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 804
Contains \Drupal\Core\Entity\ContentEntityBase.

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']);
}