forked from imorland/synopsis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextend.php
executable file
·50 lines (38 loc) · 1.62 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
<?php
/*
* This file is part of ianm/synopsis.
*
* (c) 2020 - 2021 Ian Morland
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace IanM\Synopsis;
use Flarum\Api\Controller\ListDiscussionsController;
use Flarum\Api\Controller\UpdateDiscussionController;
use Flarum\Extend;
use Flarum\Tags\Api\Serializer\TagSerializer;
use Flarum\Tags\Event\Saving as TagSaving;
return [
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
->css(__DIR__.'/resources/less/forum/extension.less'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
new Extend\Locales(__DIR__.'/resources/locale'),
(new Extend\Settings())
->serializeToForum('synopsis.excerpt_length', 'ianm-synopsis.excerpt_length', 'intVal')
->serializeToForum('synopsis.rich_excerpts', 'ianm-synopsis.rich-excerpts', 'boolVal')
->serializeToForum('synopsis.excerpt_type', 'ianm-synopsis.excerpt-type'),
(new Extend\ApiController(ListDiscussionsController::class))
->prepareDataForSerialization(LoadRelations::class),
(new Extend\ApiController(UpdateDiscussionController::class))
->prepareDataForSerialization(LoadRelations::class),
(new Extend\User())
->registerPreference('showSynopsisExcerpts', 'boolVal', true)
->registerPreference('showSynopsisExcerptsOnMobile', 'boolVal', true),
(new Extend\Event())
->listen(TagSaving::class, Tags\Saving::class),
(new Extend\ApiSerializer(TagSerializer::class))
->attributes(Tags\AddTagsAttrs::class),
];