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 / AsciiExtended.php
blob8561d718dde6bc7076e50aa34c2a0ccead7abb1b
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 * Extended ASCII character set (positions 127+, MS DOS & Windows compatible)
15 * @link http://en.wikipedia.org/wiki/Box-drawing_characters
17 class AsciiExtended implements CharsetInterface
20 const ACTIVATE = "";
21 const DEACTIVATE = "";
23 const BLOCK = "\xdb";
24 const SHADE_LIGHT = "\xb0";
25 const SHADE_MEDIUM = "\xb1";
26 const SHADE_DARK = "\xb2";
28 const LINE_SINGLE_EW = "\xc4";
29 const LINE_SINGLE_NS = "\xb3";
30 const LINE_SINGLE_NW = "\xda";
31 const LINE_SINGLE_NE = "\xbf";
32 const LINE_SINGLE_SE = "\xd9";
33 const LINE_SINGLE_SW = "\xc0";
34 const LINE_SINGLE_CROSS = "\xc5";
36 const LINE_DOUBLE_EW = "\xcd";
37 const LINE_DOUBLE_NS = "\xba";
38 const LINE_DOUBLE_NW = "\xc9";
39 const LINE_DOUBLE_NE = "\xbb";
40 const LINE_DOUBLE_SE = "\xbc";
41 const LINE_DOUBLE_SW = "\xc8";
42 const LINE_DOUBLE_CROSS = "\xce";
44 const LINE_BLOCK_EW = "\xdb";
45 const LINE_BLOCK_NS = "\xdb";
46 const LINE_BLOCK_NW = "\xdb";
47 const LINE_BLOCK_NE = "\xdb";
48 const LINE_BLOCK_SE = "\xdb";
49 const LINE_BLOCK_SW = "\xdb";
50 const LINE_BLOCK_CROSS = "\xdb";