You are here

public function ContentEntityBase::isRevisionTranslationAffectedEnforced in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::isRevisionTranslationAffectedEnforced()
  2. 10 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\Entity

Code

public function isRevisionTranslationAffectedEnforced() {
  return !empty($this->enforceRevisionTranslationAffected[$this->activeLangcode]);
}