You are here

public function ContentTranslationMetadataWrapper::setCreatedTime in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/content_translation/src/ContentTranslationMetadataWrapper.php \Drupal\content_translation\ContentTranslationMetadataWrapper::setCreatedTime()

Sets the translation creation timestamp.

The metadata field will be updated, only if it's translatable.

Parameters

int $timestamp: The UNIX timestamp of when the translation was created.

Return value

$this

Overrides ContentTranslationMetadataWrapperInterface::setCreatedTime

File

core/modules/content_translation/src/ContentTranslationMetadataWrapper.php, line 114

Class

ContentTranslationMetadataWrapper
Base class for content translation metadata wrappers.

Namespace

Drupal\content_translation

Code

public function setCreatedTime($timestamp) {
  $field_name = $this->translation
    ->hasField('content_translation_created') ? 'content_translation_created' : 'created';
  $this
    ->setFieldOnlyIfTranslatable($field_name, $timestamp);
  return $this;
}