| 1 | <?php |
||
| 13 | class ext extends \phpbb\extension\base |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritDoc} |
||
| 17 | */ |
||
| 18 | public function is_enableable() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Check the installed phpBB version meets this |
||
| 25 | * extension's requirements. |
||
| 26 | * |
||
| 27 | * Requires phpBB 3.2.0-rc2 and TextFormatter 0.8.1 |
||
| 28 | * |
||
| 29 | * @return bool |
||
| 30 | */ |
||
| 31 | public function phpbb_version_is_valid() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Check if s9e MediaEmbed extension for phpBB is installed |
||
| 38 | * (it must NOT be to enable this extension). |
||
| 39 | * |
||
| 40 | * @return bool |
||
| 41 | */ |
||
| 42 | public function s9e_mediamebed_installed() |
||
| 46 | } |
||
| 47 |