function Context::validate
Validates the set context value.
Return value
\Symfony\Component\Validator\ConstraintViolationListInterface A list of constraint violations. If the list is empty, validation succeeded.
Overrides ContextInterface::validate
1 method overrides Context::validate()
- Context::validate in core/
lib/ Drupal/ Core/ Plugin/ Context/ Context.php - Validates the set context value.
File
-
core/
lib/ Drupal/ Component/ Plugin/ Context/ Context.php, line 88
Class
- Context
- A generic context class for wrapping data a plugin needs to operate.
Namespace
Drupal\Component\Plugin\ContextCode
public function validate() {
$validator = Validation::createValidatorBuilder()->getValidator();
return $validator->validateValue($this->getContextValue(), $this->getConstraints());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.