protected function ContentModerationState::getFieldsToSkipFromTranslationChangesCheck in Drupal 9
Same name and namespace in other branches
- 8 core/modules/content_moderation/src/Entity/ContentModerationState.php \Drupal\content_moderation\Entity\ContentModerationState::getFieldsToSkipFromTranslationChangesCheck()
Returns an array of field names to skip in ::hasTranslationChanges.
Return value
array An array of field names.
Overrides ContentEntityBase::getFieldsToSkipFromTranslationChangesCheck
File
- core/
modules/ content_moderation/ src/ Entity/ ContentModerationState.php, line 188
Class
- ContentModerationState
- Defines the Content moderation state entity.
Namespace
Drupal\content_moderation\EntityCode
protected function getFieldsToSkipFromTranslationChangesCheck() {
$field_names = parent::getFieldsToSkipFromTranslationChangesCheck();
// We need to skip the parent entity revision ID, since that will always
// change on every save, otherwise every translation would be marked as
// affected regardless of actual changes.
$field_names[] = 'content_entity_revision_id';
return $field_names;
}