-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathextend.php
More file actions
52 lines (40 loc) · 1.56 KB
/
extend.php
File metadata and controls
52 lines (40 loc) · 1.56 KB
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
<?php
/*
* This file is part of afrux/top-posters-widget.
*
* Copyright (c) 2021 Sami Mazouz.
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace Afrux\TopPosters;
use Flarum\Api\Serializer as FlarumSerializer;
use Flarum\Api\Controller\ShowForumController;
use Flarum\Extend;
use Flarum\Settings\Event\Saved;
use Flarum\User\Filter\UserFilterer;
use Flarum\User\Search\UserSearcher;
use Flarum\User\User;
return [
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
->css(__DIR__.'/less/forum.less'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/less/admin.less'),
new Extend\Locales(__DIR__.'/locale'),
(new Extend\ApiSerializer(FlarumSerializer\ForumSerializer::class))
->attributes(AddTopPostersToApi::class)
->hasMany('topPosters', FlarumSerializer\UserSerializer::class),
(new Extend\ApiController(ShowForumController::class))
->addInclude(['topPosters'])
->prepareDataForSerialization(LoadForumTopPostersRelationship::class),
(new Extend\Filter(UserFilterer::class))
->addFilter(Query\TopPosterGambitFilter::class),
(new Extend\SimpleFlarumSearch(UserSearcher::class))
->addGambit(Query\TopPosterGambitFilter::class),
(new Extend\Settings())
->default('afrux-top-posters-widget.excludeGroups', '[]'),
(new Extend\Event())
->listen(Saved::class, Listener\ClearTopPosterCacheOnSettingsChange::class),
];