forked from jordanjay29/flarum-ext-summaries
-
Notifications
You must be signed in to change notification settings - Fork 7
/
extend.php
executable file
·60 lines (47 loc) · 2.09 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
55
56
57
58
59
60
<?php
/*
* This file is part of ianm/synopsis.
*
* (c) 2020 - 2022 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;
use Flarum\Tags\Tag;
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\Model(Tag::class))
->cast('excerpt_length', 'int')
->cast('rich_excerpts', 'bool'),
(new Extend\Settings())
->default('ianm-synopsis.excerpt_length', 200)
->default('ianm-synopsis.rich-excerpts', false)
->default('ianm-synopsis.excerpt-type', 'first')
->default('ianm-synopsis.disable-when-searching', true)
->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')
->serializeToForum('synopsis.disable_when_searching', 'ianm-synopsis.disable-when-searching', 'boolval'),
(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', false),
(new Extend\Event())
->listen(TagSaving::class, Tags\Saving::class),
(new Extend\ApiSerializer(TagSerializer::class))
->attributes(Tags\AddTagsAttrs::class),
];