1 | <?php |
||
20 | class EventPanel extends AbstractPanel implements PanelInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var EventProfiler |
||
24 | */ |
||
25 | private $eventProfiler; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $title = 'Application events'; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | protected $content; |
||
36 | |||
37 | /** |
||
38 | * @param ModuleManager $modules |
||
39 | */ |
||
40 | public function __construct(ModuleManager $modules) |
||
44 | |||
45 | /** |
||
46 | * @return EventProfiler |
||
47 | * @throws Exception\LogicException |
||
48 | */ |
||
49 | protected function getEventProfiler() |
||
56 | |||
57 | /** |
||
58 | * @param EventProfiler $eventProfiler |
||
59 | * @return self |
||
60 | */ |
||
61 | public function setEventProfiler(EventProfiler $eventProfiler) |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function getTab() |
||
74 | |||
75 | /** |
||
76 | * {@inheritdoc} |
||
77 | */ |
||
78 | public function getPanel() |
||
82 | } |
||
83 |