1 | <?php |
||
12 | class forum |
||
13 | { |
||
14 | /** @var \phpbb\auth\auth */ |
||
15 | protected $auth; |
||
16 | |||
17 | /** @var \phpbb\config\config */ |
||
18 | protected $config; |
||
19 | |||
20 | /** @var \phpbb\controller\helper */ |
||
21 | protected $helper; |
||
22 | |||
23 | /** @var \phpbb\template\template */ |
||
24 | protected $template; |
||
25 | |||
26 | /** @var \phpbb\language\language */ |
||
27 | protected $translator; |
||
28 | |||
29 | /** @var \phpbb\user */ |
||
30 | protected $user; |
||
31 | |||
32 | /** @var string phpBB root path */ |
||
33 | protected $phpbb_root_path; |
||
34 | |||
35 | /** @var string phpEx */ |
||
36 | protected $php_ext; |
||
37 | |||
38 | /** |
||
39 | * Constructor |
||
40 | * |
||
41 | * @param \phpbb\auth\auth $auth Auth object |
||
42 | * @param \phpbb\config\config $config Config object |
||
43 | * @param \phpbb\controller\helper $helper Controller Helper object |
||
44 | * @param \phpbb\template\template $template Template object |
||
45 | * @param \phpbb\language\language $translator Language object |
||
46 | * @param \phpbb\user $user User object |
||
47 | * @param string $root_path phpBB root path |
||
48 | * @param string $php_ext phpEx |
||
49 | */ |
||
50 | 3 | public function __construct(\phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\controller\helper $helper, \phpbb\template\template $template, \phpbb\language\language $translator, \phpbb\user $user, $root_path, $php_ext) |
|
61 | |||
62 | /** |
||
63 | * @return \Symfony\Component\HttpFoundation\Response |
||
64 | */ |
||
65 | 3 | public function handle() |
|
94 | |||
95 | /** |
||
96 | * @return string |
||
97 | */ |
||
98 | 3 | protected function set_mcp_url() |
|
105 | } |
||
106 |