RegexValidator
class RegexValidator extends AbstractTranslatableValidator (View source)
Constants
E_DOES_NOT_MATCH |
Passed string doesn't match |
Properties
protected array | $translatable_requirements | from AbstractTranslatableValidator | |
protected | $translatable_errors | from AbstractTranslatableValidator | |
protected string | $pattern |
Methods
Get an error string given a code and a passed value.
Check to see if $value a valid stand in for a translatable string.
Set the requirement string to a mixed value Closure format: function(TranslatableValidatorInterface $validator, int $code): string.
Set the error string to a string or to a closure Closure format: function(TranslatableValidatorInterface $validator, int $code, mixed $passed): string.
Get the validator requirements in the form of an array keyed by it's respective error code.
RegexValidator constructor.
No description
No description
Details
protected string|mixed
getErrorString(int $code, mixed $value, mixed $default = null)
Get an error string given a code and a passed value.
protected bool
isTranslatableStringValueValid($value)
Check to see if $value a valid stand in for a translatable string.
setRequirementString(int $code, string|Closure $message)
Set the requirement string to a mixed value Closure format: function(TranslatableValidatorInterface $validator, int $code): string.
setErrorString(int $code, string|Closure $message)
Set the error string to a string or to a closure Closure format: function(TranslatableValidatorInterface $validator, int $code, mixed $passed): string.
where $passed
is whatever was passed to ValidatorInterface::isValid
string[]
getRequirementStrings()
Get the validator requirements in the form of an array keyed by it's respective error code.
Example: [ self::E_TOO_SHORT => 'Must be at least 10 characters' ]
__construct(string $pattern)
RegexValidator constructor.
string
getPattern()
No description
setPattern(string $pattern)
No description
bool
isValid(mixed $mixed, ArrayAccess $error = null)
Is this mixed value valid.