public function EntityTestEntityLevelValidator::validate in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator::validate()
- 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\ConstraintCode
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();
  }
}