public function ContentTranslationMetadataWrapper::setAuthor in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/content_translation/src/ContentTranslationMetadataWrapper.php \Drupal\content_translation\ContentTranslationMetadataWrapper::setAuthor()
Sets the translation author.
The metadata field will be updated, only if it's translatable.
Parameters
\Drupal\user\UserInterface $account: The translation author user entity.
Return value
$this
Overrides ContentTranslationMetadataWrapperInterface::setAuthor
File
- core/
modules/ content_translation/ src/ ContentTranslationMetadataWrapper.php, line 85 - Contains \Drupal\content_translation\ContentTranslationMetadataWrapper.
Class
- ContentTranslationMetadataWrapper
- Base class for content translation metadata wrappers.
Namespace
Drupal\content_translationCode
public function setAuthor(UserInterface $account) {
$field_name = $this->translation
->hasField('content_translation_uid') ? 'content_translation_uid' : 'uid';
$this
->setFieldOnlyIfTranslatable($field_name, $account
->id());
return $this;
}