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 / DECSG.php
blob038809aa2e482d23984ade26acc8dfc99b364933
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 * DEC Special Graphics (VT100 line drawing) character set
15 * @link http://vt100.net/docs/vt220-rm/table2-4.html
17 class DECSG implements CharsetInterface
20 const ACTIVATE = "\x1b(0";
21 const DEACTIVATE = "\x1b(B";
23 const BLOCK = "\x61";
24 const SHADE_LIGHT = "\x61";
25 const SHADE_MEDIUM = "\x61";
26 const SHADE_DARK = "\x61";
28 const LINE_SINGLE_EW = "\x71";
29 const LINE_SINGLE_NS = "\x78";
30 const LINE_SINGLE_NW = "\x6c";
31 const LINE_SINGLE_NE = "\x6b";
32 const LINE_SINGLE_SE = "\x6a";
33 const LINE_SINGLE_SW = "\x6d";
34 const LINE_SINGLE_CROSS = "\x6e";
36 const LINE_DOUBLE_EW = "\x73";
37 const LINE_DOUBLE_NS = "\x78";
38 const LINE_DOUBLE_NW = "\x6c";
39 const LINE_DOUBLE_NE = "\x5b";
40 const LINE_DOUBLE_SE = "\x6a";
41 const LINE_DOUBLE_SW = "\x6d";
42 const LINE_DOUBLE_CROSS = "\x6e";
44 const LINE_BLOCK_EW = "\x61";
45 const LINE_BLOCK_NS = "\x61";
46 const LINE_BLOCK_NW = "\x61";
47 const LINE_BLOCK_NE = "\x61";
48 const LINE_BLOCK_SE = "\x61";
49 const LINE_BLOCK_SW = "\x61";
50 const LINE_BLOCK_CROSS = "\x61";