ContentEntityBase::isTranslatable

public ContentEntityBase::isTranslatable()

Returns the translation support status.

Return value

bool TRUE if the object has translation support enabled.

Overrides TranslatableInterface::isTranslatable

File

core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 338

Class

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

Namespace

Drupal\Core\Entity

Code

public function isTranslatable() {
  // Check that the bundle is translatable, the entity has a language defined
  // and if we have more than one language on the site.
  $bundles = $this->entityManager()->getBundleInfo($this->entityTypeId);
  return !empty($bundles[$this->bundle()]['translatable']) && !$this->getUntranslated()->language()->isLocked() && $this->languageManager()->isMultilingual();
}
doc_Drupal
2016-10-29 08:56:58
Comments
Leave a Comment

Please login to continue.