function EntityTestEntityLevelValidator::validate

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()
  2. 8.9.x core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator::validate()
  3. 10 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\Constraint

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.