7f7c756b6b9bcb60d6934e438386eec3225458a3
[yaffs-website] / web / core / modules / content_moderation / src / Plugin / Validation / Constraint / ModerationStateConstraint.php
1 <?php
2
3 namespace Drupal\content_moderation\Plugin\Validation\Constraint;
4
5 use Symfony\Component\Validator\Constraint;
6
7 /**
8  * Verifies that nodes have a valid moderation state.
9  *
10  * @Constraint(
11  *   id = "ModerationState",
12  *   label = @Translation("Valid moderation state", context = "Validation")
13  * )
14  */
15 class ModerationStateConstraint extends Constraint {
16
17   public $message = 'Invalid state transition from %from to %to';
18   public $invalidStateMessage = 'State %state does not exist on %workflow workflow';
19
20 }