| 1 | <?php |
||
| 32 | class Page |
||
| 33 | { |
||
| 34 | /** |
||
| 35 | * @var \Zend\ServiceManager\ServiceManager |
||
| 36 | */ |
||
| 37 | protected $serviceManager; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var string |
||
| 41 | */ |
||
| 42 | protected $customroottemplate; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var string |
||
| 46 | */ |
||
| 47 | public $cb_pagetype; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @var string |
||
| 51 | */ |
||
| 52 | public $cb_subnav; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @var string |
||
| 56 | */ |
||
| 57 | public $cb_customcontenttemplate; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @var int |
||
| 61 | */ |
||
| 62 | protected $status = 200; |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @var \HaaseIT\HCSF\PagePayload |
||
| 66 | */ |
||
| 67 | public $oPayload; |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @var array |
||
| 71 | */ |
||
| 72 | public $cb_customdata; |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @var array|string |
||
| 76 | */ |
||
| 77 | public $cb_pageconfig; |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @var array |
||
| 81 | */ |
||
| 82 | protected $headers = []; |
||
| 83 | |||
| 84 | /** |
||
| 85 | * @return string |
||
| 86 | */ |
||
| 87 | public function getCustomRootTemplate() |
||
| 91 | |||
| 92 | /** |
||
| 93 | * @return array |
||
| 94 | */ |
||
| 95 | public function getHeaders() |
||
| 99 | |||
| 100 | /** |
||
| 101 | * @param string $header |
||
| 102 | */ |
||
| 103 | public function addHeader($header) |
||
| 107 | |||
| 108 | /** |
||
| 109 | * @return int |
||
| 110 | */ |
||
| 111 | public function getStatus() |
||
| 115 | |||
| 116 | /** |
||
| 117 | * @param int $status |
||
| 118 | */ |
||
| 119 | public function setStatus($status) |
||
| 123 | } |
||
| 124 |