1 | <?php |
||
19 | class InfoPanel extends AbstractPanel implements |
||
20 | PanelInterface, |
||
21 | PanelInitInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var string|null |
||
25 | */ |
||
26 | protected $barTitle; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $root; |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function init(ServiceManager $services) |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function getTab() |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | public function getPanel() |
||
71 | } |
||
72 |