class Range in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/validator/Constraints/Range.php \Symfony\Component\Validator\Constraints\Range
- 8.0 core/lib/Drupal/Core/Render/Element/Range.php \Drupal\Core\Render\Element\Range
Same name and namespace in other branches
- 8 vendor/symfony/validator/Constraints/Range.php \Symfony\Component\Validator\Constraints\Range
@Target({"PROPERTY", "METHOD", "ANNOTATION"})
@author Bernhard Schussek <bschussek@gmail.com>
Hierarchy
- class \Symfony\Component\Validator\Constraint
- class \Symfony\Component\Validator\Constraints\Range
Expanded class hierarchy of Range
Related topics
7 files declare their use of Range
- AllValidatorTest.php in vendor/
symfony/ validator/ Tests/ Constraints/ AllValidatorTest.php - AnnotationLoaderTest.php in vendor/
symfony/ validator/ Tests/ Mapping/ Loader/ AnnotationLoaderTest.php - CollectionValidatorTest.php in vendor/
symfony/ validator/ Tests/ Constraints/ CollectionValidatorTest.php - RangeConstraint.php in core/
lib/ Drupal/ Core/ Validation/ Plugin/ Validation/ Constraint/ RangeConstraint.php - Contains \Drupal\Core\Validation\Plugin\Validation\Constraint\RangeConstraint.
- RangeValidatorTest.php in vendor/
symfony/ validator/ Tests/ Constraints/ RangeValidatorTest.php
5 string references to 'Range'
- BinaryFileResponse::prepare in vendor/
symfony/ http-foundation/ BinaryFileResponse.php - Prepares the Response before it is sent to the client.
- BinaryFileResponseTest::testFullFileRequests in vendor/
symfony/ http-foundation/ Tests/ BinaryFileResponseTest.php - @dataProvider provideFullFileRanges
- BinaryFileResponseTest::testInvalidRequests in vendor/
symfony/ http-foundation/ Tests/ BinaryFileResponseTest.php - @dataProvider provideInvalidRanges
- BinaryFileResponseTest::testRequests in vendor/
symfony/ http-foundation/ Tests/ BinaryFileResponseTest.php - @dataProvider provideRanges
- form_test.routing.yml in core/
modules/ system/ tests/ modules/ form_test/ form_test.routing.yml - core/modules/system/tests/modules/form_test/form_test.routing.yml
File
- vendor/
symfony/ validator/ Constraints/ Range.php, line 23
Namespace
Symfony\Component\Validator\ConstraintsView source
class Range extends Constraint {
const INVALID_VALUE_ERROR = 1;
const BEYOND_RANGE_ERROR = 2;
const BELOW_RANGE_ERROR = 3;
protected static $errorNames = array(
self::INVALID_VALUE_ERROR => 'INVALID_VALUE_ERROR',
self::BEYOND_RANGE_ERROR => 'BEYOND_RANGE_ERROR',
self::BELOW_RANGE_ERROR => 'BELOW_RANGE_ERROR',
);
public $minMessage = 'This value should be {{ limit }} or more.';
public $maxMessage = 'This value should be {{ limit }} or less.';
public $invalidMessage = 'This value should be a valid number.';
public $min;
public $max;
public function __construct($options = null) {
parent::__construct($options);
if (null === $this->min && null === $this->max) {
throw new MissingOptionsException(sprintf('Either option "min" or "max" must be given for constraint %s', __CLASS__), array(
'min',
'max',
));
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Constraint:: |
public | property | Domain-specific data attached to a constraint. | |
Constraint:: |
public | function | Adds the given group if this constraint is in the Default group. | 1 |
Constraint:: |
constant | Marks a constraint that can be put onto classes. | ||
Constraint:: |
constant | The name of the group given to all constraints with no explicit group. | ||
Constraint:: |
public | function | Returns the name of the default option. | 18 |
Constraint:: |
public static | function | Returns the name of the given error code. | |
Constraint:: |
public | function | Returns the name of the required options. | 11 |
Constraint:: |
public | function | Returns whether the constraint can be put onto classes, properties or both. | 11 |
Constraint:: |
constant | Marks a constraint that can be put onto properties. | ||
Constraint:: |
public | function | Returns the name of the class that validates this constraint. | 11 |
Constraint:: |
public | function | Returns the value of a lazily initialized option. | 1 |
Constraint:: |
public | function | Sets the value of a lazily initialized option. | 1 |
Constraint:: |
public | function | Optimizes the serialized value to minimize storage space. | |
Range:: |
protected static | property |
Maps error codes to the names of their constants. Overrides Constraint:: |
|
Range:: |
public | property | ||
Range:: |
public | property | ||
Range:: |
public | property | 1 | |
Range:: |
public | property | ||
Range:: |
public | property | 1 | |
Range:: |
constant | |||
Range:: |
constant | |||
Range:: |
constant | |||
Range:: |
public | function |
Initializes the constraint with options. Overrides Constraint:: |