-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathextend.php
More file actions
24 lines (20 loc) · 616 Bytes
/
extend.php
File metadata and controls
24 lines (20 loc) · 616 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/*
* This file is part of extum/flarum-ext-material.
*
* Copyright (c) 2020 Arda Cebi.
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace KodedScorpius\Material;
use Flarum\Extend;
return [
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
->css(__DIR__.'/resources/less/forum.less'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/resources/less/admin.less'),
new Extend\Locales(__DIR__ . '/resources/locale')
];