function EntityTestEntityLevelValidator::validate
Same name in other branches
- 9 core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator::validate()
- 8.9.x core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator::validate()
- 11.x 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 16
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();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.