public function ContentEntityBase::isTranslatable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\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 341 - Contains \Drupal\Core\Entity\ContentEntityBase.
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\EntityCode
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();
}