You are here

public function EntityTestEntityLevelValidator::validate 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::validate()

File

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

Class

EntityTestEntityLevelValidator
Constraint validator for the EntityTestEntityLevel constraint.

Namespace

Drupal\entity_test\Plugin\Validation\Constraint

Code

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();
  }
}