function ConstraintManager::getDefinitionsByType
Same name in other branches
- 9 core/lib/Drupal/Core/Validation/ConstraintManager.php \Drupal\Core\Validation\ConstraintManager::getDefinitionsByType()
- 10 core/lib/Drupal/Core/Validation/ConstraintManager.php \Drupal\Core\Validation\ConstraintManager::getDefinitionsByType()
- 11.x core/lib/Drupal/Core/Validation/ConstraintManager.php \Drupal\Core\Validation\ConstraintManager::getDefinitionsByType()
Returns a list of constraints that support the given type.
Parameters
string $type: The type to filter on.
Return value
array An array of constraint plugin definitions supporting the given type, keyed by constraint name (plugin ID).
File
-
core/
lib/ Drupal/ Core/ Validation/ ConstraintManager.php, line 129
Class
- ConstraintManager
- Constraint plugin manager.
Namespace
Drupal\Core\ValidationCode
public function getDefinitionsByType($type) {
$definitions = [];
foreach ($this->getDefinitions() as $plugin_id => $definition) {
if ($definition['type'] === FALSE || in_array($type, $definition['type'])) {
$definitions[$plugin_id] = $definition;
}
}
return $definitions;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.