~clinton-collins/familyproject/trunk

« back to all changes in this revision

Viewing changes to ZendFramework/library/Zend/Validate/LessThan.php

  • Committer: Clinton Collins
  • Date: 2009-06-26 19:54:58 UTC
  • Revision ID: clinton.collins@gmail.com-20090626195458-5ebba0qcvo15xlpy
Initial Import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
/**
 
4
 * Zend Framework
 
5
 *
 
6
 * LICENSE
 
7
 *
 
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.
 
15
 *
 
16
 * @category   Zend
 
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 $
 
21
 */
 
22
 
 
23
 
 
24
/**
 
25
 * @see Zend_Validate_Abstract
 
26
 */
 
27
require_once 'Zend/Validate/Abstract.php';
 
28
 
 
29
 
 
30
/**
 
31
 * @category   Zend
 
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
 
35
 */
 
36
class Zend_Validate_LessThan extends Zend_Validate_Abstract
 
37
{
 
38
 
 
39
    const NOT_LESS = 'notLessThan';
 
40
 
 
41
    /**
 
42
     * @var array
 
43
     */
 
44
    protected $_messageTemplates = array(
 
45
        self::NOT_LESS => "'%value%' is not less than '%max%'"
 
46
    );
 
47
 
 
48
    /**
 
49
     * @var array
 
50
     */
 
51
    protected $_messageVariables = array(
 
52
        'max' => '_max'
 
53
    );
 
54
 
 
55
    /**
 
56
     * Maximum value
 
57
     *
 
58
     * @var mixed
 
59
     */
 
60
    protected $_max;
 
61
 
 
62
    /**
 
63
     * Sets validator options
 
64
     *
 
65
     * @param  mixed $max
 
66
     * @return void
 
67
     */
 
68
    public function __construct($max)
 
69
    {
 
70
        $this->setMax($max);
 
71
    }
 
72
 
 
73
    /**
 
74
     * Returns the max option
 
75
     *
 
76
     * @return mixed
 
77
     */
 
78
    public function getMax()
 
79
    {
 
80
        return $this->_max;
 
81
    }
 
82
 
 
83
    /**
 
84
     * Sets the max option
 
85
     *
 
86
     * @param  mixed $max
 
87
     * @return Zend_Validate_LessThan Provides a fluent interface
 
88
     */
 
89
    public function setMax($max)
 
90
    {
 
91
        $this->_max = $max;
 
92
        return $this;
 
93
    }
 
94
 
 
95
    /**
 
96
     * Defined by Zend_Validate_Interface
 
97
     *
 
98
     * Returns true if and only if $value is less than max option
 
99
     *
 
100
     * @param  mixed $value
 
101
     * @return boolean
 
102
     */
 
103
    public function isValid($value)
 
104
    {
 
105
        $this->_setValue($value);
 
106
        if ($this->_max <= $value) {
 
107
            $this->_error();
 
108
            return false;
 
109
        }
 
110
        return true;
 
111
    }
 
112
 
 
113
}