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

Breadcrumb

  1. Drupal Core 11.1.x

ContentTranslationSynchronizedFieldsConstraint.php

Namespace

Drupal\content_translation\Plugin\Validation\Constraint

File

core/modules/content_translation/src/Plugin/Validation/Constraint/ContentTranslationSynchronizedFieldsConstraint.php

View source
<?php

namespace Drupal\content_translation\Plugin\Validation\Constraint;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Validation\Attribute\Constraint;
use Symfony\Component\Validator\Constraint as SymfonyConstraint;

/**
 * Validation constraint for the entity changed timestamp.
 *
 * @internal
 */
class ContentTranslationSynchronizedFieldsConstraint extends SymfonyConstraint {
    
    /**
     * 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.';

}

Classes

Title Deprecated Summary
ContentTranslationSynchronizedFieldsConstraint Validation constraint for the entity changed timestamp.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal