-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathextend.php
54 lines (43 loc) · 1.58 KB
/
extend.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/*
* This file is part of fof/formatting.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FoF\Formatting;
use Flarum\Api\Serializer\ForumSerializer;
use Flarum\Extend;
use Flarum\Settings\Event\Saved;
use FoF\Formatting\Listeners\FormatterConfigurator;
use s9e\TextFormatter\Configurator;
use s9e\TextFormatter\Configurator\Bundles\MediaPack;
return [
(new Extend\Frontend('forum'))
->css(__DIR__.'/resources/less/forum.less'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/resources/less/admin.less'),
new Extend\Locales(__DIR__.'/resources/locale'),
(new Extend\Formatter())
->configure(function (Configurator $configurator) {
$settings = resolve('flarum.settings');
foreach (FormatterConfigurator::PLUGINS as $plugin) {
$enabled = $settings->get('fof-formatting.plugin.'.strtolower($plugin));
if ($enabled) {
if ($plugin == 'MediaEmbed') {
(new MediaPack())->configure($configurator);
} else {
//* @phpstan-ignore-next-line */
$configurator->$plugin;
}
}
}
}),
(new Extend\ApiSerializer(ForumSerializer::class))
->attributes(FormatterConfigurator::class),
(new Extend\Event())
->listen(Saved::class, Listeners\ClearCache::class),
];