ModerationStateConstraint.php

Same filename and directory in other branches
  1. 11.x core/modules/content_moderation/src/Plugin/Validation/Constraint/ModerationStateConstraint.php
  2. 10 core/modules/content_moderation/src/Plugin/Validation/Constraint/ModerationStateConstraint.php
  3. 9 core/modules/content_moderation/src/Plugin/Validation/Constraint/ModerationStateConstraint.php
  4. 8.9.x core/modules/content_moderation/src/Plugin/Validation/Constraint/ModerationStateConstraint.php

Namespace

Drupal\content_moderation\Plugin\Validation\Constraint

File

core/modules/content_moderation/src/Plugin/Validation/Constraint/ModerationStateConstraint.php

View source
<?php

namespace Drupal\content_moderation\Plugin\Validation\Constraint;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Validation\Attribute\Constraint;
use Symfony\Component\Validator\Attribute\HasNamedArguments;
use Symfony\Component\Validator\Constraint as SymfonyConstraint;

/**
 * Verifies that nodes have a valid moderation state.
 */
class ModerationStateConstraint extends SymfonyConstraint {
  public function __construct(mixed $options = NULL, 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', ?array $groups = NULL, mixed $payload = NULL) {
    parent::__construct($options, $groups, $payload);
  }

}

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.