class Length in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Constraints/Length.php \Symfony\Component\Validator\Constraints\Length
@Target({"PROPERTY", "METHOD", "ANNOTATION"})
@author Bernhard Schussek <bschussek@gmail.com>
Hierarchy
- class \Symfony\Component\Validator\Constraint
- class \Symfony\Component\Validator\Constraints\Length
Expanded class hierarchy of Length
Related topics
2 files declare their use of Length
- LengthConstraint.php in core/
lib/ Drupal/ Core/ Validation/ Plugin/ Validation/ Constraint/ LengthConstraint.php - Contains \Drupal\Core\Validation\Plugin\Validation\Constraint\LengthConstraint.
- LengthValidatorTest.php in vendor/
symfony/ validator/ Tests/ Constraints/ LengthValidatorTest.php
1 string reference to 'Length'
- file.schema.yml in core/
modules/ file/ config/ schema/ file.schema.yml - core/modules/file/config/schema/file.schema.yml
File
- vendor/
symfony/ validator/ Constraints/ Length.php, line 23
Namespace
Symfony\Component\Validator\ConstraintsView source
class Length extends Constraint {
const TOO_SHORT_ERROR = 1;
const TOO_LONG_ERROR = 2;
protected static $errorNames = array(
self::TOO_SHORT_ERROR => 'TOO_SHORT_ERROR',
self::TOO_LONG_ERROR => 'TOO_LONG_ERROR',
);
public $maxMessage = 'This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.';
public $minMessage = 'This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.';
public $exactMessage = 'This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters.';
public $charsetMessage = 'This value does not match the expected {{ charset }} charset.';
public $max;
public $min;
public $charset = 'UTF-8';
public function __construct($options = null) {
if (null !== $options && !is_array($options)) {
$options = array(
'min' => $options,
'max' => $options,
);
}
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. | |
Length:: |
public | property | ||
Length:: |
public | property | ||
Length:: |
protected static | property |
Maps error codes to the names of their constants. Overrides Constraint:: |
|
Length:: |
public | property | 1 | |
Length:: |
public | property | ||
Length:: |
public | property | 1 | |
Length:: |
public | property | ||
Length:: |
public | property | 1 | |
Length:: |
constant | |||
Length:: |
constant | |||
Length:: |
public | function |
Initializes the constraint with options. Overrides Constraint:: |