ModerationStateConstraint.php
Same filename in other branches
Namespace
Drupal\content_moderation\Plugin\Validation\ConstraintFile
-
core/
modules/ content_moderation/ src/ Plugin/ Validation/ Constraint/ ModerationStateConstraint.php
View source
<?php
namespace Drupal\content_moderation\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Verifies that nodes have a valid moderation state.
*
* @Constraint(
* id = "ModerationState",
* label = @Translation("Valid moderation state", context = "Validation")
* )
*/
class ModerationStateConstraint extends Constraint {
public $message = 'Invalid state transition from %from to %to';
public $invalidStateMessage = 'State %state does not exist on %workflow workflow';
public $invalidTransitionAccess = 'You do not have access to transition from %original_state to %new_state';
}
Classes
Title | Deprecated | Summary |
---|---|---|
ModerationStateConstraint | Verifies that nodes have a valid moderation state. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.