Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ContentModerationState.php

function ContentModerationState::getFieldsToSkipFromTranslationChangesCheck

Overrides ContentEntityBase::getFieldsToSkipFromTranslationChangesCheck

File

core/modules/content_moderation/src/Entity/ContentModerationState.php, line 200

Class

ContentModerationState
Defines the Content moderation state entity.

Namespace

Drupal\content_moderation\Entity

Code

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;
}
RSS feed
Powered by Drupal