public ContentTranslationMetadataWrapper::setOutdated($outdated)
Sets the translation outdated status.
Parameters
bool $outdated: TRUE if the translation is outdated, FALSE otherwise.
Return value
$this
Overrides ContentTranslationMetadataWrapperInterface::setOutdated
File
- core/modules/content_translation/src/ContentTranslationMetadataWrapper.php, line 65
Class
- ContentTranslationMetadataWrapper
- Base class for content translation metadata wrappers.
Namespace
Drupal\content_translation
Code
1 2 3 4 | public function setOutdated( $outdated ) { $this ->translation->set( 'content_translation_outdated' , $outdated ); return $this ; } |
Please login to continue.