You are here

class EntityTestEntityLevelValidator in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator
  2. 10 core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator

Constraint validator for the EntityTestEntityLevel constraint.

Hierarchy

Expanded class hierarchy of EntityTestEntityLevelValidator

File

core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php, line 11

Namespace

Drupal\entity_test\Plugin\Validation\Constraint
View source
class EntityTestEntityLevelValidator extends ConstraintValidator {

  /**
   * Validator 2.5 and upwards compatible execution context.
   *
   * @var \Symfony\Component\Validator\Context\ExecutionContextInterface
   */
  protected $context;

  /**
   * {@inheritdoc}
   */
  public function validate($value, Constraint $constraint) {
    if ($value->name->value === 'entity-level-violation') {
      $this->context
        ->buildViolation($constraint->message)
        ->addViolation();
    }
    if ($value->name->value === 'entity-level-violation-with-path') {
      $this->context
        ->buildViolation($constraint->message)
        ->atPath('test.form.element')
        ->addViolation();
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityTestEntityLevelValidator::$context protected property Validator 2.5 and upwards compatible execution context.
EntityTestEntityLevelValidator::validate public function Checks if the passed value is valid.