public function ContentEntityBase::isRevisionTranslationAffectedEnforced in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::isRevisionTranslationAffectedEnforced()
Checks if the revision translation affected flag value has been enforced.
@internal
Return value
bool TRUE if revision translation affected flag is enforced, FALSE otherwise.
Overrides TranslatableRevisionableInterface::isRevisionTranslationAffectedEnforced
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php, line 400
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\EntityCode
public function isRevisionTranslationAffectedEnforced() {
return !empty($this->enforceRevisionTranslationAffected[$this->activeLangcode]);
}