1 | <?php |
||
21 | class listener implements EventSubscriberInterface |
||
22 | { |
||
23 | static public function getSubscribedEvents() |
||
29 | |||
30 | /** @var \phpbb\controller\helper */ |
||
31 | protected $helper; |
||
32 | |||
33 | /** @var \phpbb\template\template */ |
||
34 | protected $template; |
||
35 | |||
36 | /**@var \phpbb\user */ |
||
37 | protected $user; |
||
38 | |||
39 | /** |
||
40 | * Constructor |
||
41 | * |
||
42 | * @param \phpbb\controller\helper $helper Controller helper object |
||
43 | * @param \phpbb\template $template Template object |
||
44 | * @param \phpbb\user $user User object |
||
45 | */ |
||
46 | public function __construct(\phpbb\controller\helper $helper, \phpbb\template\template $template, \phpbb\user $user) |
||
52 | |||
53 | public function page_header() |
||
60 | } |
||
61 |