PHP Класс Prado\Web\UI\WebControls\TCompareValidator

TCompareValidator compares the value entered by the user into an input control with the value entered into another input control or a constant value. To compare the associated input control with another input control, set the {@link setControlToCompare ControlToCompare} property to the ID path of the control to compare with. To compare the associated input control with a constant value, specify the constant value to compare with by setting the {@link setValueToCompare ValueToCompare} property. The {@link setDataType DataType} property is used to specify the data type of both comparison values. Both values are automatically converted to this data type before the comparison operation is performed. The following value types are supported: - Integer A 32-bit signed integer data type. - Float A double-precision floating point number data type. - Date A date data type. The format can be specified by the {@link setDateFormat DateFormat} property - String A string data type. Use the {@link setOperator Operator} property to specify the type of comparison to perform. Valid operators include Equal, NotEqual, GreaterThan, GreaterThanEqual, LessThan and LessThanEqual.
С версии: 3.0
Автор: Qiang Xue ([email protected])
Наследование: extends TBaseValidator
Показать файл Открыть проект

Открытые методы

Метод Описание
evaluateIsValid ( ) : boolean This method overrides the parent's implementation.
getControlToCompare ( ) : string
getDataType ( ) : TValidationDataType
getDateFormat ( ) : string
getOperator ( ) : TValidationCompareOperator
getValueToCompare ( ) : string
setControlToCompare ( $value ) Sets the input component to compare with the input control being validated.
setDataType ( $value ) Sets the data type that the values being compared are converted to before the comparison is made.
setDateFormat ( $value ) Sets the date format for a date validation
setOperator ( $value ) Sets the comparison operation to perform
setValueToCompare ( $value ) Sets the constant value to compare with the value entered by the user into the input component being validated.

Защищенные методы

Метод Описание
getClientClassName ( ) : string Gets the name of the javascript class responsible for performing validation for this control.
getClientScriptOptions ( ) : array Returns an array of javascript validator options.
getComparisonValues ( $value1, $value2 ) : array Parse the pair of values into the appropriate value type.

Описание методов

evaluateIsValid() публичный Метод

The validation succeeds if the input data compares successfully. The validation always succeeds if ControlToValidate is not specified or the input data is empty.
public evaluateIsValid ( ) : boolean
Результат boolean whether the validation succeeds

getClientClassName() защищенный Метод

This method overrides the parent implementation.
protected getClientClassName ( ) : string
Результат string the javascript class name

getClientScriptOptions() защищенный Метод

Returns an array of javascript validator options.
protected getClientScriptOptions ( ) : array
Результат array javascript validator options.

getComparisonValues() защищенный Метод

Parse the pair of values into the appropriate value type.
protected getComparisonValues ( $value1, $value2 ) : array
Результат array appropriate type of the value pair, array($value1, $value2);

getControlToCompare() публичный Метод

public getControlToCompare ( ) : string
Результат string the input component to compare with the input control being validated.

getDataType() публичный Метод

public getDataType ( ) : TValidationDataType
Результат TValidationDataType the data type that the values being compared are converted to before the comparison is made. Defaults to TValidationDataType::String.

getDateFormat() публичный Метод

public getDateFormat ( ) : string
Результат string the date validation date format if any

getOperator() публичный Метод

public getOperator ( ) : TValidationCompareOperator
Результат TValidationCompareOperator the comparison operation to perform. Defaults to TValidationCompareOperator::Equal.

getValueToCompare() публичный Метод

public getValueToCompare ( ) : string
Результат string the constant value to compare with the value entered by the user into the input component being validated.

setControlToCompare() публичный Метод

Sets the input component to compare with the input control being validated.
public setControlToCompare ( $value )

setDataType() публичный Метод

Sets the data type that the values being compared are converted to before the comparison is made.
public setDataType ( $value )

setDateFormat() публичный Метод

Sets the date format for a date validation
public setDateFormat ( $value )

setOperator() публичный Метод

Sets the comparison operation to perform
public setOperator ( $value )

setValueToCompare() публичный Метод

Sets the constant value to compare with the value entered by the user into the input component being validated.
public setValueToCompare ( $value )