class RangeConstraint in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/RangeConstraint.php \Drupal\Core\Validation\Plugin\Validation\Constraint\RangeConstraint
Range constraint.
Overrides the symfony constraint to use Drupal-style replacement patterns.
@todo: Move this below the TypedData core component.
Plugin annotation
@Constraint(
id = "Range",
label = @Translation("Range", context = "Validation"),
type = { "integer", "float" }
)
Hierarchy
- class \Drupal\Core\Validation\Plugin\Validation\Constraint\RangeConstraint extends \Symfony\Component\Validator\Constraints\Range
Expanded class hierarchy of RangeConstraint
File
- core/
lib/ Drupal/ Core/ Validation/ Plugin/ Validation/ Constraint/ RangeConstraint.php, line 20
Namespace
Drupal\Core\Validation\Plugin\Validation\ConstraintView source
class RangeConstraint extends Range {
public $minMessage = 'This value should be %limit or more.';
public $maxMessage = 'This value should be %limit or less.';
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RangeConstraint:: |
public | property | ||
RangeConstraint:: |
public | property |