You are here

public function ContentEntityBase::removeTranslation 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::removeTranslation()

Removes the translation identified by the given language code.

Parameters

string $langcode: The language code identifying the translation to be removed.

Overrides TranslatableInterface::removeTranslation

File

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

Class

ContentEntityBase
Implements Entity Field API specific enhancements to the Entity class.

Namespace

Drupal\Core\Entity

Code

public function removeTranslation($langcode) {
  if (isset($this->translations[$langcode]) && $langcode != LanguageInterface::LANGCODE_DEFAULT && $langcode != $this->defaultLangcode) {
    foreach ($this
      ->getFieldDefinitions() as $name => $definition) {
      if ($definition
        ->isTranslatable()) {
        unset($this->values[$name][$langcode]);
        unset($this->fields[$name][$langcode]);
      }
    }
    $this->translations[$langcode]['status'] = static::TRANSLATION_REMOVED;
  }
  else {
    throw new \InvalidArgumentException("The specified translation ({$langcode}) cannot be removed.");
  }
}