12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class HTMLPurifierSchemesModule extends Module
- {
- const PLUGIN_VERSION = '2.0.0';
- public function onModuleVersion(array &$versions): bool
- {
- $versions[] = array('name' => 'HTMLPurifier Schemes',
- 'version' => self::PLUGIN_VERSION,
- 'author' => 'Mikael Nordfeldth',
- 'homepage' => 'https://gnu.io/social',
- 'rawdescription' =>
-
- _m('Additional URI schemes for HTMLPurifier.'));
- return true;
- }
- }
|