class EntityTestEntityLevelValidator

Same name 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
  2. 10 core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevelValidator.php \Drupal\entity_test\Plugin\Validation\Constraint\EntityTestEntityLevelValidator
  3. 11.x 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

Expanded class hierarchy of EntityTestEntityLevelValidator

File

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

Namespace

Drupal\entity_test\Plugin\Validation\Constraint
View source
class EntityTestEntityLevelValidator extends ConstraintValidator {
    
    /**
     * Validator 2.5 and upwards compatible execution context.
     *
     * @var \Symfony\Component\Validator\Context\ExecutionContextInterface
     */
    protected $context;
    
    /**
     * {@inheritdoc}
     */
    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();
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary
EntityTestEntityLevelValidator::$context protected property Validator 2.5 and upwards compatible execution context.
EntityTestEntityLevelValidator::validate public function

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