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 / Text / Table / Decorator / Ascii.php
blob98620bacfed51727c63ad5074c98419372d7ca40
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\Text\Table\Decorator;
12 use Zend\Text\Table\Decorator\DecoratorInterface as Decorator;
14 /**
15 * ASCII Decorator for Zend\Text\Table
17 class Ascii implements Decorator
19 /**
20 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
22 * @return string
24 public function getTopLeft()
26 return '+';
29 /**
30 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
32 * @return string
34 public function getTopRight()
36 return '+';
39 /**
40 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
42 * @return string
44 public function getBottomLeft()
46 return '+';
49 /**
50 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
52 * @return string
54 public function getBottomRight()
56 return '+';
59 /**
60 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
62 * @return string
64 public function getVertical()
66 return '|';
69 /**
70 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
72 * @return string
74 public function getHorizontal()
76 return '-';
79 /**
80 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
82 * @return string
84 public function getCross()
86 return '+';
89 /**
90 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
92 * @return string
94 public function getVerticalRight()
96 return '+';
99 /**
100 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
102 * @return string
104 public function getVerticalLeft()
106 return '+';
110 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
112 * @return string
114 public function getHorizontalDown()
116 return '+';
120 * Defined by Zend\Text\Table\Decorator\DecoratorInterface
122 * @return string
124 public function getHorizontalUp()
126 return '+';