function ComplexDataConstraintValidator::validate
File
- 
              core/
lib/ Drupal/ Core/ Validation/ Plugin/ Validation/ Constraint/ ComplexDataConstraintValidator.php, line 22  
Class
- ComplexDataConstraintValidator
 - Validates complex data.
 
Namespace
Drupal\Core\Validation\Plugin\Validation\ConstraintCode
public function validate($data, Constraint $constraint) {
  // If un-wrapped data has been passed, fetch the typed data object first.
  if (!$data instanceof TypedDataInterface) {
    $data = $this->getTypedData();
  }
  if (!$data instanceof ComplexDataInterface) {
    throw new UnexpectedTypeException($data, 'ComplexData');
  }
  foreach ($constraint->properties as $name => $constraints) {
    $this->context
      ->getValidator()
      ->inContext($this->context)
      ->validate($data->get($name), $constraints, NULL, FALSE);
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.