fix calendar css, take 2. (#213)
[openemr.git] / interface / modules / zend_modules / library / Zend / Console / Charset / Utf8.php
blob26a846b4a35bf4765ec123c926bcff833a8f5415
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-2015 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
19 const ACTIVATE = "";
20 const DEACTIVATE = "";
22 const BLOCK = "█";
23 const SHADE_LIGHT = "░";
24 const SHADE_MEDIUM = "▒";
25 const SHADE_DARK = "▓";
27 const LINE_SINGLE_EW = "─";
28 const LINE_SINGLE_NS = "│";
29 const LINE_SINGLE_NW = "┌";
30 const LINE_SINGLE_NE = "┐";
31 const LINE_SINGLE_SE = "┘";
32 const LINE_SINGLE_SW = "└";
33 const LINE_SINGLE_CROSS = "┼";
35 const LINE_DOUBLE_EW = "═";
36 const LINE_DOUBLE_NS = "║";
37 const LINE_DOUBLE_NW = "╔";
38 const LINE_DOUBLE_NE = "╗";
39 const LINE_DOUBLE_SE = "╝";
40 const LINE_DOUBLE_SW = "╚";
41 const LINE_DOUBLE_CROSS = "╬";
43 const LINE_BLOCK_EW = "█";
44 const LINE_BLOCK_NS = "█";
45 const LINE_BLOCK_NW = "█";
46 const LINE_BLOCK_NE = "█";
47 const LINE_BLOCK_SE = "█";
48 const LINE_BLOCK_SW = "█";
49 const LINE_BLOCK_CROSS = "█";