public function 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();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!ContentEntityBase.php/function/ContentEntityBase::isTranslatable/8.1.x