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 / Utf8.php
blob634e7b4f37c06599da219d28169d609c7f79f73d
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 * UTF-8 box drawing
15 * @link http://en.wikipedia.org/wiki/Box-drawing_characters
17 class Utf8 implements CharsetInterface
20 const ACTIVATE = "";
21 const DEACTIVATE = "";
23 const BLOCK = "█";
24 const SHADE_LIGHT = "░";
25 const SHADE_MEDIUM = "▒";
26 const SHADE_DARK = "▓";
28 const LINE_SINGLE_EW = "─";
29 const LINE_SINGLE_NS = "│";
30 const LINE_SINGLE_NW = "┌";
31 const LINE_SINGLE_NE = "┐";
32 const LINE_SINGLE_SE = "┘";
33 const LINE_SINGLE_SW = "└";
34 const LINE_SINGLE_CROSS = "┼";
36 const LINE_DOUBLE_EW = "═";
37 const LINE_DOUBLE_NS = "║";
38 const LINE_DOUBLE_NW = "╔";
39 const LINE_DOUBLE_NE = "╗";
40 const LINE_DOUBLE_SE = "╝";
41 const LINE_DOUBLE_SW = "╚";
42 const LINE_DOUBLE_CROSS = "╬";
44 const LINE_BLOCK_EW = "█";
45 const LINE_BLOCK_NS = "█";
46 const LINE_BLOCK_NW = "█";
47 const LINE_BLOCK_NE = "█";
48 const LINE_BLOCK_SE = "█";
49 const LINE_BLOCK_SW = "█";
50 const LINE_BLOCK_CROSS = "█";