public function ContentEntityBase::isTranslatable in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::isTranslatable()
- 10 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 429
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\EntityCode
public function isTranslatable() {
// Check the bundle is translatable, the entity has a language defined, and
// the site has more than one language.
$bundles = $this
->entityTypeBundleInfo()
->getBundleInfo($this->entityTypeId);
return !empty($bundles[$this
->bundle()]['translatable']) && !$this
->getUntranslated()
->language()
->isLocked() && $this
->languageManager()
->isMultilingual();
}