public TypedData::getConstraints()
Gets a list of validation constraints.
Return value
array Array of constraints, each being an instance of \Symfony\Component\Validator\Constraint.
Overrides TypedDataInterface::getConstraints
File
- core/lib/Drupal/Core/TypedData/TypedData.php, line 122
Class
- TypedData
- The abstract base class for typed data.
Namespace
Drupal\Core\TypedData
Code
1 2 3 4 5 6 7 8 | public function getConstraints() { $constraint_manager = $this ->getTypedDataManager()->getValidationConstraintManager(); $constraints = array (); foreach ( $this ->definition->getConstraints() as $name => $options ) { $constraints [] = $constraint_manager ->create( $name , $options ); } return $constraints ; } |
Please login to continue.