setMin($min); } /** * Returns the min option * * @return mixed */ public function getMin() { return $this->_min; } /** * Sets the min option * * @param mixed $min * @return Zend_Validate_GreaterThan Provides a fluent interface */ public function setMin($min) { $this->_min = $min; return $this; } /** * Defined by Zend_Validate_Interface * * Returns true if and only if $value is greater than min option * * @param mixed $value * @return boolean */ public function isValid($value) { $this->_messages = array(); if ($this->_min >= $value) { $this->_messages[] = "'$value' is not greater than '$this->_min'"; return false; } return true; } /** * Defined by Zend_Validate_Interface * * Returns array of validation failure messages * * @return array */ public function getMessages() { return $this->_messages; } }