CKEditor5MediaAndFilterSettingsInSyncConstraint.php

Same filename in other branches
  1. 10 core/modules/ckeditor5/src/Plugin/Validation/Constraint/CKEditor5MediaAndFilterSettingsInSyncConstraint.php
  2. 11.x core/modules/ckeditor5/src/Plugin/Validation/Constraint/CKEditor5MediaAndFilterSettingsInSyncConstraint.php

Namespace

Drupal\ckeditor5\Plugin\Validation\Constraint

File

core/modules/ckeditor5/src/Plugin/Validation/Constraint/CKEditor5MediaAndFilterSettingsInSyncConstraint.php

View source
<?php

declare (strict_types=1);
namespace Drupal\ckeditor5\Plugin\Validation\Constraint;

use Symfony\Component\Validator\Constraint;

/**
 * Ensure CKEditor 5 media plugin's and media filter's settings are in sync.
 *
 * @Constraint(
 *   id = "CKEditor5MediaAndFilterSettingsInSync",
 *   label = @Translation("CKEditor 5 Media plugin in sync with filter settings", context = "Validation"),
 * )
 *
 * @internal
 */
class CKEditor5MediaAndFilterSettingsInSyncConstraint extends Constraint {
    
    /**
     * The default violation message.
     *
     * @var string
     */
    public $message = 'The CKEditor 5 "%cke5_media_plugin_label" plugin\'s "%cke5_allow_view_mode_override_label" setting should be in sync with the "%filter_media_plugin_label" filter\'s "%filter_media_allowed_view_modes_label" setting: when checked, two or more view modes must be allowed by the filter.';

}

Classes

Title Deprecated Summary
CKEditor5MediaAndFilterSettingsInSyncConstraint Ensure CKEditor 5 media plugin's and media filter's settings are in sync.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.