Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function install_abbc3_bbcodes() |
||
32 | { |
||
33 | /** @var \phpbb\group\helper $group_helper */ |
||
34 | $group_helper = $this->container->get('group_helper'); |
||
35 | |||
36 | /** @var \phpbb\language\language $language */ |
||
37 | $language = $this->container->get('language'); |
||
38 | |||
39 | /** @var \phpbb\request\request $request */ |
||
40 | $request = $this->container->get('request'); |
||
41 | |||
42 | $bbcodes_installer = new \vse\abbc3\core\bbcodes_installer($this->db, $group_helper, $language, $request, $this->phpbb_root_path, $this->php_ext); |
||
43 | $bbcodes_installer->install_bbcodes(static::$bbcode_data); |
||
44 | } |
||
45 | } |
||
46 |