You are here

class ContentTranslationSynchronizedFieldsConstraint in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/content_translation/src/Plugin/Validation/Constraint/ContentTranslationSynchronizedFieldsConstraint.php \Drupal\content_translation\Plugin\Validation\Constraint\ContentTranslationSynchronizedFieldsConstraint

Validation constraint for the entity changed timestamp.

@internal

Plugin annotation


@Constraint(
  id = "ContentTranslationSynchronizedFields",
  label = @Translation("Content translation synchronized fields", context = "Validation"),
  type = {"entity"}
)

Hierarchy

Expanded class hierarchy of ContentTranslationSynchronizedFieldsConstraint

File

core/modules/content_translation/src/Plugin/Validation/Constraint/ContentTranslationSynchronizedFieldsConstraint.php, line 18

Namespace

Drupal\content_translation\Plugin\Validation\Constraint
View source
class ContentTranslationSynchronizedFieldsConstraint extends Constraint {

  /**
   * Message shown for non-translatable field changes in non-default revision.
   *
   * In this case "elements" refers to "field properties". It is what we are
   * using in the UI elsewhere.
   */
  public $defaultRevisionMessage = 'Non-translatable field elements can only be changed when updating the current revision.';

  /**
   * Message shown for non-translatable field changes in different language.
   *
   * In this case "elements" refers to "field properties". It is what we are
   * using in the UI elsewhere.
   */
  public $defaultTranslationMessage = 'Non-translatable field elements can only be changed when updating the original language.';

}

Members

Namesort descending Modifiers Type Description Overrides
ContentTranslationSynchronizedFieldsConstraint::$defaultRevisionMessage public property Message shown for non-translatable field changes in non-default revision.
ContentTranslationSynchronizedFieldsConstraint::$defaultTranslationMessage public property Message shown for non-translatable field changes in different language.