~chroot64bit/zivios/gentoo-experimental

« back to all changes in this revision

Viewing changes to application/library/Zend/Validate/Hex.php

  • Committer: Mustafa A. Hashmi
  • Date: 2008-12-04 13:32:21 UTC
  • Revision ID: mhashmi@zivios.org-20081204133221-0nd1trunwevijj38
Inclusion of new installation framework with ties to zend layout and dojo layout

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: Hex.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_Hex extends Zend_Validate_Abstract
 
37
{
 
38
    /**
 
39
     * Validation failure message key for when the value contains characters other than hexadecimal digits
 
40
     */
 
41
    const NOT_HEX = 'notHex';
 
42
 
 
43
    /**
 
44
     * Validation failure message template definitions
 
45
     *
 
46
     * @var array
 
47
     */
 
48
    protected $_messageTemplates = array(
 
49
        self::NOT_HEX => "'%value%' has not only hexadecimal digit characters"
 
50
    );
 
51
 
 
52
    /**
 
53
     * Defined by Zend_Validate_Interface
 
54
     *
 
55
     * Returns true if and only if $value contains only hexadecimal digit characters
 
56
     *
 
57
     * @param  string $value
 
58
     * @return boolean
 
59
     */
 
60
    public function isValid($value)
 
61
    {
 
62
        $valueString = (string) $value;
 
63
 
 
64
        $this->_setValue($valueString);
 
65
 
 
66
        if (!ctype_xdigit($valueString)) {
 
67
            $this->_error();
 
68
            return false;
 
69
        }
 
70
 
 
71
        return true;
 
72
    }
 
73
 
 
74
}