class EntityTestEntityLevelValidator
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
- 8.9.x core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator
- 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
- class \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator extends \Symfony\Component\Validator\ConstraintValidator
Expanded class hierarchy of EntityTestEntityLevelValidator
File
-
core/
modules/ system/ tests/ modules/ entity_test/ src/ Plugin/ Validation/ Constraint/ EntityTestEntityLevelValidator.php, line 13
Namespace
Drupal\entity_test\Plugin\Validation\ConstraintView source
class EntityTestEntityLevelValidator extends ConstraintValidator {
/**
* {@inheritdoc}
*/
public function validate($value, Constraint $constraint) : void {
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
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.