1 | <?php |
||
12 | class LegacyControllerOptions extends AbstractOptions |
||
13 | { |
||
14 | |||
15 | private $docRoot = array('public'); |
||
16 | |||
17 | private $indexFiles = array(); |
||
18 | |||
19 | private $globals = array( |
||
20 | 'get' => true, |
||
21 | 'request' => true, |
||
22 | ); |
||
23 | |||
24 | private $prependOutputBufferToResponse = false; |
||
25 | |||
26 | 1 | public function getDocRoot() |
|
30 | |||
31 | 8 | public function getDocRoots() |
|
35 | |||
36 | 6 | public function getGlobals() |
|
40 | |||
41 | 10 | public function setDocRoot($docRoot) |
|
48 | |||
49 | 9 | public function setGlobals($globals) |
|
53 | |||
54 | /** |
||
55 | * @return array |
||
56 | */ |
||
57 | public function getIndexFiles() |
||
61 | |||
62 | /** |
||
63 | * @param array $indexFiles |
||
64 | */ |
||
65 | public function setIndexFiles($indexFiles) |
||
69 | |||
70 | /** |
||
71 | * @return boolean |
||
72 | */ |
||
73 | 2 | public function getPrependOutputBufferToResponse() |
|
77 | |||
78 | /** |
||
79 | * @param boolean $prependOutputBufferToResponse |
||
80 | */ |
||
81 | public function setPrependOutputBufferToResponse($prependOutputBufferToResponse) |
||
85 | } |
||
86 |