1 | <?php |
||
13 | class ext extends \phpbb\extension\base |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritDoc} |
||
17 | */ |
||
18 | public function is_enableable() |
||
22 | |||
23 | /** |
||
24 | * Check if s9e TextFormatter is installed (it must be |
||
25 | * to enable this extension). |
||
26 | * |
||
27 | * @return bool |
||
28 | */ |
||
29 | public function s9e_textformatter_installed() |
||
33 | |||
34 | /** |
||
35 | * Check if s9e MediaEmbed extension for phpBB is installed |
||
36 | * (it must NOT be to enable this extension). |
||
37 | * |
||
38 | * @return bool |
||
39 | */ |
||
40 | public function s9e_mediamebed_installed() |
||
44 | } |
||
45 |