class Validator

Common validators.

Properties

static array $messages

Methods

static 
formatMessage(Rule $rule, $withValue = true)

No description

static bool
validateEqual(IControl $control, $arg)

Is control's value equal with second parameter?

static bool
validateNotEqual(IControl $control, $arg)

Is control's value not equal with second parameter?

static bool
validateStatic(IControl $control, $arg)

Returns argument.

static bool
validateFilled(IControl $control)

Is control filled?

static bool
validateBlank(IControl $control)

Is control not filled?

static bool
validateValid(BaseControl $control)

Is control valid?

static bool
validateRange(IControl $control, $range)

Is a control's value number in specified range?

static bool
validateMin(IControl $control, $minimum)

Is a control's value number greater than or equal to the specified minimum?

static bool
validateMax(IControl $control, $maximum)

Is a control's value number less than or equal to the specified maximum?

static bool
validateLength(IControl $control, $range)

Count/length validator. Range is array, min and max length pair.

static bool
validateMinLength(IControl $control, $length)

Has control's value minimal count/length?

static bool
validateMaxLength(IControl $control, $length)

Is control's value count/length in limit?

static bool
validateSubmitted(SubmitButton $control)

Has been button pressed?

static bool
validateEmail(IControl $control)

Is control's value valid email address?

static bool
validateUrl(IControl $control)

Is control's value valid URL?

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

static 
validatePatternCaseInsensitive(IControl $control, $pattern)

No description

static bool
validateInteger(IControl $control)

Is a control's value decimal number?

static bool
validateFloat(IControl $control)

Is a control's value float number?

static bool
validateFileSize(UploadControl $control, $limit)

Is file size in limit?

static bool
validateMimeType(UploadControl $control, $mimeType)

Has file specified mime type?

static bool
validateImage(UploadControl $control)

Is file image?

Details

at line 49
static formatMessage(Rule $rule, $withValue = true)

internal  
 

No description

Parameters

Rule $rule
$withValue

at line 91
static bool validateEqual(IControl $control, $arg)

Is control's value equal with second parameter?

Parameters

IControl $control
$arg

Return Value

bool

at line 110
static bool validateNotEqual(IControl $control, $arg)

Is control's value not equal with second parameter?

Parameters

IControl $control
$arg

Return Value

bool

at line 120
static bool validateStatic(IControl $control, $arg)

Returns argument.

Parameters

IControl $control
$arg

Return Value

bool

at line 130
static bool validateFilled(IControl $control)

Is control filled?

Parameters

IControl $control

Return Value

bool

at line 140
static bool validateBlank(IControl $control)

Is control not filled?

Parameters

IControl $control

Return Value

bool

at line 150
static bool validateValid(BaseControl $control)

Is control valid?

Parameters

BaseControl $control

Return Value

bool

at line 162
static bool validateRange(IControl $control, $range)

Is a control's value number in specified range?

Parameters

IControl $control
$range

Return Value

bool

at line 177
static bool validateMin(IControl $control, $minimum)

Is a control's value number greater than or equal to the specified minimum?

Parameters

IControl $control
$minimum

Return Value

bool

at line 189
static bool validateMax(IControl $control, $maximum)

Is a control's value number less than or equal to the specified maximum?

Parameters

IControl $control
$maximum

Return Value

bool

at line 201
static bool validateLength(IControl $control, $range)

Count/length validator. Range is array, min and max length pair.

Parameters

IControl $control
$range

Return Value

bool

at line 217
static bool validateMinLength(IControl $control, $length)

Has control's value minimal count/length?

Parameters

IControl $control
$length

Return Value

bool

at line 229
static bool validateMaxLength(IControl $control, $length)

Is control's value count/length in limit?

Parameters

IControl $control
$length

Return Value

bool

at line 239
static bool validateSubmitted(SubmitButton $control)

Has been button pressed?

Parameters

SubmitButton $control

Return Value

bool

at line 249
static bool validateEmail(IControl $control)

Is control's value valid email address?

Parameters

IControl $control

Return Value

bool

at line 259
static bool validateUrl(IControl $control)

Is control's value valid URL?

Parameters

IControl $control

Return Value

bool

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

Parameters

IControl $control
$pattern
$caseInsensitive

Return Value

bool

at line 291
static validatePatternCaseInsensitive(IControl $control, $pattern)

No description

Parameters

IControl $control
$pattern

at line 301
static bool validateInteger(IControl $control)

Is a control's value decimal number?

Parameters

IControl $control

Return Value

bool

at line 317
static bool validateFloat(IControl $control)

Is a control's value float number?

Parameters

IControl $control

Return Value

bool

at line 333
static bool validateFileSize(UploadControl $control, $limit)

Is file size in limit?

Parameters

UploadControl $control
$limit

Return Value

bool

at line 350
static bool validateMimeType(UploadControl $control, $mimeType)

Has file specified mime type?

Parameters

UploadControl $control
$mimeType

Return Value

bool

at line 367
static bool validateImage(UploadControl $control)

Is file image?

Parameters

UploadControl $control

Return Value

bool

Traits

StaticClass