-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextend.php
38 lines (30 loc) · 1.07 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
<?php
/*
* This file is part of rob006/flarum-ext-last-post-avatar.
*
* Copyright (c) 2023 Robert Korulczyk <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace rob006\flarum\lastPostAvatar;
use Flarum\Extend;
use rob006\flarum\lastPostAvatar\entities\Mode;
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\Settings())
->default('rob006-last-post-avatar.ignorePrivateDiscussions', false)
->serializeToForum('lastPostAvatarIgnorePrivateDiscussions', 'rob006-last-post-avatar.ignorePrivateDiscussions', 'boolval')
->serializeToForum('lastPostAvatarMode', 'rob006-last-post-avatar.mode', static function ($value) {
if (!is_string($value) || !in_array($value, Mode::getModes(), true)) {
$value = Mode::DEFAULT;
}
return $value;
}),
new Extend\Locales(__DIR__ . '/locale'),
];