8
* This source file is subject to the new BSD license that is bundled
9
* with this package in the file LICENSE.txt.
10
* It is also available through the world-wide-web at this URL:
11
* http://framework.zend.com/license/new-bsd
12
* If you did not receive a copy of the license and are unable to
13
* obtain it through the world-wide-web, please send an email
14
* to license@zend.com so we can send you a copy immediately.
17
* @package Zend_Validate
18
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
19
* @license http://framework.zend.com/license/new-bsd New BSD License
20
* @version $Id: LessThan.php 8064 2008-02-16 10:58:39Z thomas $
25
* @see Zend_Validate_Abstract
27
require_once 'Zend/Validate/Abstract.php';
32
* @package Zend_Validate
33
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
34
* @license http://framework.zend.com/license/new-bsd New BSD License
36
class Zend_Validate_LessThan extends Zend_Validate_Abstract
39
const NOT_LESS = 'notLessThan';
44
protected $_messageTemplates = array(
45
self::NOT_LESS => "'%value%' is not less than '%max%'"
51
protected $_messageVariables = array(
63
* Sets validator options
68
public function __construct($max)
74
* Returns the max option
78
public function getMax()
87
* @return Zend_Validate_LessThan Provides a fluent interface
89
public function setMax($max)
96
* Defined by Zend_Validate_Interface
98
* Returns true if and only if $value is less than max option
100
* @param mixed $value
103
public function isValid($value)
105
$this->_setValue($value);
106
if ($this->_max <= $value) {