class StyleSensibleElementConstraint

Same name in other branches
  1. 9 core/modules/ckeditor5/src/Plugin/Validation/Constraint/StyleSensibleElementConstraint.php \Drupal\ckeditor5\Plugin\Validation\Constraint\StyleSensibleElementConstraint
  2. 11.x core/modules/ckeditor5/src/Plugin/Validation/Constraint/StyleSensibleElementConstraint.php \Drupal\ckeditor5\Plugin\Validation\Constraint\StyleSensibleElementConstraint

Styles can only be specified for HTML5 tags and extra classes.

@internal

Hierarchy

Expanded class hierarchy of StyleSensibleElementConstraint

File

core/modules/ckeditor5/src/Plugin/Validation/Constraint/StyleSensibleElementConstraint.php, line 16

Namespace

Drupal\ckeditor5\Plugin\Validation\Constraint
View source
class StyleSensibleElementConstraint extends SymfonyConstraint {
    
    /**
     * When a style is defined for a non-HTML5 tag.
     *
     * @var string
     */
    public $nonHtml5TagMessage = 'A style can only be specified for an HTML 5 tag. <code>@tag</code> is not an HTML5 tag.';
    
    /**
     * When a Style is defined with classes supported by an enabled plugin.
     *
     * @var string
     */
    public $conflictingEnabledPluginMessage = 'A style must only specify classes not supported by other plugins. The <code>@classes</code> classes on <code>@tag</code> are already supported by the enabled %plugin plugin.';
    
    /**
     * When a Style is defined with classes supported by a disabled plugin.
     *
     * @var string
     */
    public $conflictingDisabledPluginMessage = 'A style must only specify classes not supported by other plugins. The <code>@classes</code> classes on <code>@tag</code> are supported by the %plugin plugin. Remove this style and enable that plugin instead.';
    
    /**
     * When a Style is defined for a plugin that does not yet support Style.
     *
     * @var string
     */
    public $unsupportedTagMessage = 'The <code>@tag</code> tag is not yet supported by the Style plugin.';

}

Members

Title Sort descending Modifiers Object type Summary
StyleSensibleElementConstraint::$conflictingDisabledPluginMessage public property When a Style is defined with classes supported by a disabled plugin.
StyleSensibleElementConstraint::$conflictingEnabledPluginMessage public property When a Style is defined with classes supported by an enabled plugin.
StyleSensibleElementConstraint::$nonHtml5TagMessage public property When a style is defined for a non-HTML5 tag.
StyleSensibleElementConstraint::$unsupportedTagMessage public property When a Style is defined for a plugin that does not yet support Style.

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