Public Member Functions | |
__construct ($min) | |
getMin () | |
setMin ($min) | |
isValid ($value) | |
Data Fields | |
const | NOT_GREATER = 'notGreaterThan' |
Protected Attributes | |
$_messageTemplates | |
$_messageVariables | |
$_min |
Definition at line 36 of file GreaterThan.php.
__construct | ( | $ | min ) |
Sets validator options
mixed | $min |
Definition at line 68 of file GreaterThan.php.
getMin | ( | ) |
isValid | ( | $ | value ) |
Defined by Zend_Validate_Interface
Returns true if and only if $value is greater than min option
mixed | $value |
Implements Zend_Validate_Interface.
Definition at line 103 of file GreaterThan.php.
setMin | ( | $ | min ) |
Sets the min option
mixed | $min |
Definition at line 89 of file GreaterThan.php.
$_messageTemplates [protected] |
array(
self::NOT_GREATER => "'%value%' is not greater than '%min%'"
)
Reimplemented from Zend_Validate_Abstract.
Definition at line 44 of file GreaterThan.php.
$_messageVariables [protected] |
array( 'min' => '_min' )
Reimplemented from Zend_Validate_Abstract.
Definition at line 51 of file GreaterThan.php.