equal
deleted
inserted
replaced
|
1 <?php |
|
2 /** |
|
3 * Zend Framework |
|
4 * |
|
5 * LICENSE |
|
6 * |
|
7 * This source file is subject to the new BSD license that is bundled |
|
8 * with this package in the file LICENSE.txt. |
|
9 * It is also available through the world-wide-web at this URL: |
|
10 * http://framework.zend.com/license/new-bsd |
|
11 * If you did not receive a copy of the license and are unable to |
|
12 * obtain it through the world-wide-web, please send an email |
|
13 * to license@zend.com so we can send you a copy immediately. |
|
14 * |
|
15 * @category Zend |
|
16 * @package Zend_Barcode |
|
17 * @subpackage Object |
|
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
20 * @version $Id: Planet.php 20096 2010-01-06 02:05:09Z bkarwin $ |
|
21 */ |
|
22 |
|
23 /** |
|
24 * @see Zend_Barcode_Object_Postnet |
|
25 */ |
|
26 require_once 'Zend/Barcode/Object/Postnet.php'; |
|
27 |
|
28 /** |
|
29 * @see Zend_Validate_Barcode |
|
30 */ |
|
31 require_once 'Zend/Validate/Barcode.php'; |
|
32 |
|
33 /** |
|
34 * Class for generate Planet barcode |
|
35 * |
|
36 * @category Zend |
|
37 * @package Zend_Barcode |
|
38 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
39 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
40 */ |
|
41 class Zend_Barcode_Object_Planet extends Zend_Barcode_Object_Postnet |
|
42 { |
|
43 |
|
44 /** |
|
45 * Coding map |
|
46 * - 0 = half bar |
|
47 * - 1 = complete bar |
|
48 * @var array |
|
49 */ |
|
50 protected $_codingMap = array( |
|
51 0 => "00111", |
|
52 1 => "11100", |
|
53 2 => "11010", |
|
54 3 => "11001", |
|
55 4 => "10110", |
|
56 5 => "10101", |
|
57 6 => "10011", |
|
58 7 => "01110", |
|
59 8 => "01101", |
|
60 9 => "01011" |
|
61 ); |
|
62 } |