1 | <?php |
||
13 | class abbc3_module |
||
14 | { |
||
15 | /** @var \phpbb\cache\driver\driver_interface */ |
||
16 | protected $cache; |
||
17 | |||
18 | /** @var \phpbb\config\config */ |
||
19 | protected $config; |
||
20 | |||
21 | /** @var \Symfony\Component\DependencyInjection\ContainerInterface */ |
||
22 | protected $container; |
||
23 | |||
24 | /** @var \phpbb\db\driver\driver_interface */ |
||
25 | protected $db; |
||
26 | |||
27 | /** @var \phpbb\language\language */ |
||
28 | protected $language; |
||
29 | |||
30 | /** @var \phpbb\request\request */ |
||
31 | protected $request; |
||
32 | |||
33 | /** @var \phpbb\template\template */ |
||
34 | protected $template; |
||
35 | |||
36 | /** @var string */ |
||
37 | public $page_title; |
||
38 | |||
39 | /** @var string */ |
||
40 | public $tpl_name; |
||
41 | |||
42 | /** @var string */ |
||
43 | public $u_action; |
||
44 | |||
45 | /** |
||
46 | * Constructor |
||
47 | */ |
||
48 | public function __construct() |
||
60 | |||
61 | /** |
||
62 | * Main ACP module |
||
63 | */ |
||
64 | public function main() |
||
86 | |||
87 | /** |
||
88 | * Add settings template vars to the form |
||
89 | */ |
||
90 | protected function display_settings() |
||
100 | |||
101 | /** |
||
102 | * Save settings data to the database |
||
103 | */ |
||
104 | protected function save_settings() |
||
113 | |||
114 | /** |
||
115 | * Save the Pipes Table setting. |
||
116 | * - Set the config |
||
117 | * - Show or hide the Pipes BBCode button |
||
118 | * - Purge BBCode caches. |
||
119 | */ |
||
120 | protected function save_pipes() |
||
134 | } |
||
135 |