Validator
class Validator
Common validators.
Properties
static array | $messages |
Methods
Is a control's value number greater than or equal to the specified minimum?
Is a control's value number less than or equal to the specified maximum?
Count/length validator. Range is array, min and max length pair.
Does the control's value match the regular expression? Case-sensitive to comply with the HTML5 pattern attribute behaviour
Details
at line 49
static
formatMessage(Rule $rule, $withValue = true)
internal |
No description
at line 91
static bool
validateEqual(IControl $control, $arg)
Is control's value equal with second parameter?
at line 110
static bool
validateNotEqual(IControl $control, $arg)
Is control's value not equal with second parameter?
at line 120
static bool
validateStatic(IControl $control, $arg)
Returns argument.
at line 130
static bool
validateFilled(IControl $control)
Is control filled?
at line 140
static bool
validateBlank(IControl $control)
Is control not filled?
at line 150
static bool
validateValid(BaseControl $control)
Is control valid?
at line 162
static bool
validateRange(IControl $control, $range)
Is a control's value number in specified range?
at line 177
static bool
validateMin(IControl $control, $minimum)
Is a control's value number greater than or equal to the specified minimum?
at line 189
static bool
validateMax(IControl $control, $maximum)
Is a control's value number less than or equal to the specified maximum?
at line 201
static bool
validateLength(IControl $control, $range)
Count/length validator. Range is array, min and max length pair.
at line 217
static bool
validateMinLength(IControl $control, $length)
Has control's value minimal count/length?
at line 229
static bool
validateMaxLength(IControl $control, $length)
Is control's value count/length in limit?
at line 239
static bool
validateSubmitted(SubmitButton $control)
Has been button pressed?
at line 249
static bool
validateEmail(IControl $control)
Is control's value valid email address?
at line 259
static bool
validateUrl(IControl $control)
Is control's value valid URL?
at line 278
static bool
validatePattern(IControl $control, $pattern, $caseInsensitive = false)
Does the control's value match the regular expression? Case-sensitive to comply with the HTML5 pattern attribute behaviour
at line 291
static
validatePatternCaseInsensitive(IControl $control, $pattern)
No description
at line 301
static bool
validateInteger(IControl $control)
Is a control's value decimal number?
at line 317
static bool
validateFloat(IControl $control)
Is a control's value float number?
at line 333
static bool
validateFileSize(UploadControl $control, $limit)
Is file size in limit?
at line 350
static bool
validateMimeType(UploadControl $control, $mimeType)
Has file specified mime type?
at line 367
static bool
validateImage(UploadControl $control)
Is file image?