-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathextend.php
45 lines (35 loc) · 1.33 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
<?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\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),
];