equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Barcode |
16 * @package Zend_Barcode |
17 * @subpackage Object |
17 * @subpackage Object |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: Identcode.php 24593 2012-01-05 20:35:02Z matthew $ |
20 * @version $Id$ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Barcode_Object_Code25interleaved |
24 * @see Zend_Barcode_Object_Code25interleaved |
25 */ |
25 */ |
33 /** |
33 /** |
34 * Class for generate Identcode barcode |
34 * Class for generate Identcode barcode |
35 * |
35 * |
36 * @category Zend |
36 * @category Zend |
37 * @package Zend_Barcode |
37 * @package Zend_Barcode |
38 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
38 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
39 * @license http://framework.zend.com/license/new-bsd New BSD License |
39 * @license http://framework.zend.com/license/new-bsd New BSD License |
40 */ |
40 */ |
41 class Zend_Barcode_Object_Identcode extends Zend_Barcode_Object_Code25interleaved |
41 class Zend_Barcode_Object_Identcode extends Zend_Barcode_Object_Code25interleaved |
42 { |
42 { |
43 |
43 |
64 |
64 |
65 /** |
65 /** |
66 * Check allowed characters |
66 * Check allowed characters |
67 * @param string $value |
67 * @param string $value |
68 * @return string |
68 * @return string |
69 * @throw Zend_Barcode_Object_Exception |
69 * @throws Zend_Barcode_Object_Exception |
70 */ |
70 */ |
71 public function validateText($value) |
71 public function validateText($value) |
72 { |
72 { |
73 $this->_validateText($value, array('validator' => $this->getType())); |
73 $this->_validateText($value, array('validator' => $this->getType())); |
74 } |
74 } |