1 | <?php |
||
8 | class DebugInfo |
||
9 | { |
||
10 | private $widget; |
||
11 | |||
12 | private $html; |
||
13 | |||
14 | private $policies; |
||
15 | |||
16 | public function __construct() |
||
20 | |||
21 | /** |
||
22 | * @param object $widget |
||
23 | * @param string $html |
||
24 | * @return string |
||
25 | */ |
||
26 | public function addIdentifierToHtml($widget, $html) |
||
35 | |||
36 | /** |
||
37 | * Adds debug info to html as HTML title tags. |
||
38 | */ |
||
39 | private function addDebugInfo() |
||
45 | |||
46 | /** |
||
47 | * Generates a string of current cache configurations. |
||
48 | * |
||
49 | * @return string |
||
50 | */ |
||
51 | private function cacheState() |
||
59 | |||
60 | private function addHtmlComments() |
||
64 | |||
65 | /** |
||
66 | * @param $tpl |
||
67 | * @return string |
||
68 | */ |
||
69 | private function getTplPath($tpl) |
||
77 | } |
||
78 |