You are here

public function TokenAuthUser::setRevisionTranslationAffected in Simple OAuth (OAuth2) & OpenID Connect 5.x

Same name and namespace in other branches
  1. 8.4 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setRevisionTranslationAffected()
  2. 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setRevisionTranslationAffected()
  3. 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setRevisionTranslationAffected()
  4. 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::setRevisionTranslationAffected()

Marks the current revision translation as affected.

Setting the revision translation affected flag through the setter or through the field directly will always enforce it, which will be used by the entity storage to determine if the flag should be recomputed or the set value should be used instead.

Parameters

bool|null $affected: The flag value. A NULL value can be specified to reset the current value and make sure a new value will be computed by the system.

Return value

$this

Overrides TranslatableRevisionableInterface::setRevisionTranslationAffected

See also

\Drupal\Core\Entity\ContentEntityStorageBase::populateAffectedRevisionTranslations()

File

src/Authentication/TokenAuthUser.php, line 225

Class

TokenAuthUser
The decorated user class with token information.

Namespace

Drupal\simple_oauth\Authentication

Code

public function setRevisionTranslationAffected($affected) {
  return $this->subject
    ->setRevisionTranslationAffected($affected);
}