ToolbarItemConditionsMetConstraint.php
Same filename in other branches
Namespace
Drupal\ckeditor5\Plugin\Validation\ConstraintFile
-
core/
modules/ ckeditor5/ src/ Plugin/ Validation/ Constraint/ ToolbarItemConditionsMetConstraint.php
View source
<?php
declare (strict_types=1);
namespace Drupal\ckeditor5\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* A (placed) CKEditor 5 toolbar item's conditions must be met.
*
* @Constraint(
* id = "CKEditor5ToolbarItemConditionsMet",
* label = @Translation("CKEditor 5 toolbar item conditions must be met", context = "Validation"),
* )
*
* @internal
*/
class ToolbarItemConditionsMetConstraint extends Constraint {
/**
* The violation message when the required image upload status is not set.
*
* @var string
*/
public $imageUploadStatusRequiredMessage = 'The %toolbar_item toolbar item requires image uploads to be enabled.';
/**
* The violation message when a required filter is missing.
*
* @var string
*/
public $filterRequiredMessage = 'The %toolbar_item toolbar item requires the %filter filter to be enabled.';
/**
* The violation message when 1 required plugin is missing.
*
* @var string
*/
public $singleMissingRequiredPluginMessage = 'The %toolbar_item toolbar item requires the %plugin plugin to be enabled.';
/**
* The violation message when >1 required plugin is missing.
*
* @var string
*/
public $multipleMissingRequiredPluginMessage = 'The %toolbar_item toolbar item requires the %plugins plugins to be enabled.';
}
Classes
Title | Deprecated | Summary |
---|---|---|
ToolbarItemConditionsMetConstraint | A (placed) CKEditor 5 toolbar item's conditions must be met. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.