1 | <?php |
||
10 | class LegacyControllerOptions extends \Zend\Stdlib\AbstractOptions |
||
11 | { |
||
12 | |||
13 | private $docRoot = array('public'); |
||
14 | |||
15 | private $indexFiles = array(); |
||
16 | |||
17 | private $globals = array( |
||
18 | 'get' => true, |
||
19 | 'request' => true, |
||
20 | ); |
||
21 | |||
22 | private $prependOutputBufferToResponse = false; |
||
23 | |||
24 | 1 | public function getDocRoot() |
|
28 | |||
29 | 5 | public function getDocRoots() |
|
33 | |||
34 | 4 | public function getGlobals() |
|
38 | |||
39 | 6 | public function setDocRoot($docRoot) |
|
46 | |||
47 | 5 | public function setGlobals($globals) |
|
51 | |||
52 | /** |
||
53 | * @return array |
||
54 | */ |
||
55 | public function getIndexFiles() |
||
59 | |||
60 | /** |
||
61 | * @param array $indexFiles |
||
62 | */ |
||
63 | public function setIndexFiles($indexFiles) |
||
67 | |||
68 | /** |
||
69 | * @return boolean |
||
70 | */ |
||
71 | public function getPrependOutputBufferToResponse() |
||
75 | |||
76 | /** |
||
77 | * @param boolean $prependOutputBufferToResponse |
||
78 | */ |
||
79 | public function setPrependOutputBufferToResponse($prependOutputBufferToResponse) |
||
83 | |||
84 | |||
85 | } |
||
86 |