Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Console / Charset / Ascii.php
blob4bda2853dbc504aec90b88442c62af10a55c1126
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Console\Charset;
12 /**
13 * Basic (low) ASCII line drawing characters.
15 class Ascii implements CharsetInterface
18 const ACTIVATE = "";
19 const DEACTIVATE = "";
21 const BLOCK = "#";
22 const SHADE_LIGHT = " ";
23 const SHADE_MEDIUM = "#";
24 const SHADE_DARK = "#";
26 const LINE_SINGLE_EW = "-";
27 const LINE_SINGLE_NS = "|";
28 const LINE_SINGLE_NW = "+";
29 const LINE_SINGLE_NE = "+";
30 const LINE_SINGLE_SE = "+";
31 const LINE_SINGLE_SW = "+";
32 const LINE_SINGLE_CROSS = "+";
34 const LINE_DOUBLE_EW = "=";
35 const LINE_DOUBLE_NS = "|";
36 const LINE_DOUBLE_NW = "+";
37 const LINE_DOUBLE_NE = "+";
38 const LINE_DOUBLE_SE = "+";
39 const LINE_DOUBLE_SW = "+";
40 const LINE_DOUBLE_CROSS = "+";
42 const LINE_BLOCK_EW = "=";
43 const LINE_BLOCK_NS = "#";
44 const LINE_BLOCK_NW = "+";
45 const LINE_BLOCK_NE = "+";
46 const LINE_BLOCK_SE = "+";
47 const LINE_BLOCK_SW = "+";
48 const LINE_BLOCK_CROSS = "+";