class EntityTestEntityLevelValidator in Drupal 8
Same name and namespace in other branches
- 9 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 11 
Namespace
Drupal\entity_test\Plugin\Validation\ConstraintView 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
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| EntityTestEntityLevelValidator:: | protected | property | Validator 2.5 and upwards compatible execution context. | |
| EntityTestEntityLevelValidator:: | public | function | Checks if the passed value is valid. | 
