EntityTestEntityLevelValidator.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php
  2. 8.9.x core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php
  3. 10 core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php

Namespace

Drupal\entity_test\Plugin\Validation\Constraint

File

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

View source
<?php

namespace Drupal\entity_test\Plugin\Validation\Constraint;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;

/**
 * Constraint validator for the EntityTestEntityLevel constraint.
 */
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();
        }
    }

}

Classes

Title Deprecated Summary
EntityTestEntityLevelValidator Constraint validator for the EntityTestEntityLevel constraint.

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